Exemplo n.º 1
0
        /// <summary>
        /// The REST API is expected to return the variable's value type name in capitalized form.
        /// </summary>
        public static string toExpectedValueTypeName(ValueType type)
        {
            string typeName = type.Name;

            string expectedName = typeName.Substring(0, 1).ToUpper() + typeName.Substring(1);

            return(expectedName);
        }
Exemplo n.º 2
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @SuppressWarnings("unchecked") public S type(org.camunda.bpm.engine.variable.type.ValueType type)
        public virtual S type(ValueType type)
        {
            this.type_Renamed = type;
            return((S)this);
        }