Uses of Class
com.ibm.carma.model.VariableType

Packages that use VariableType
com.ibm.carma.model   
com.ibm.carma.ui.action.custom   
 

Uses of VariableType in com.ibm.carma.model
 

Fields in com.ibm.carma.model declared as VariableType
static VariableType VariableType.BOOLEAN_LITERAL
          The 'BOOLEAN' literal object.
static VariableType VariableType.BYTE_LITERAL
          The 'BYTE' literal object.
static VariableType VariableType.CHAR_LITERAL
          The 'CHAR' literal object.
static VariableType VariableType.DOUBLE_LITERAL
          The 'DOUBLE' literal object.
static VariableType VariableType.FLOAT_LITERAL
          The 'FLOAT' literal object.
static VariableType VariableType.INT_LITERAL
          The 'INT' literal object.
static VariableType VariableType.LONG_LITERAL
          The 'LONG' literal object.
static VariableType VariableType.STRING_LITERAL
          The 'STRING' literal object.
 

Methods in com.ibm.carma.model that return VariableType
static VariableType VariableType.get(int value)
          Returns the 'Variable Type' literal with the specified integer value.
static VariableType VariableType.get(java.lang.Object value)
          Returns the 'Variable Type' literal for the type of the object value.
static VariableType VariableType.get(java.lang.String literal)
          Returns the 'Variable Type' literal with the specified literal value.
static VariableType VariableType.getByName(java.lang.String name)
          Returns the 'Variable Type' literal with the specified name.
 VariableType Parameter.getType()
          Returns the value of the 'Type' attribute.
 

Methods in com.ibm.carma.model with parameters of type VariableType
 CustomParameter ModelFactory.createCustomParameter(java.lang.String parameterId, java.lang.String name, java.lang.String description, VariableType type, int length, java.lang.String prompt, java.lang.Object defaultValue, boolean isConstant)
          Returns a new object of class 'Custom Parameter'.
 Field ModelFactory.createField(java.lang.String fieldId, java.lang.String name, java.lang.String description, VariableType type, int length, java.lang.Object defaultValue, java.lang.String memberInfoKey)
          Returns a new object of class 'Field'.
 ReturnValue ModelFactory.createReturnValue(java.lang.String parameterId, java.lang.String name, java.lang.String description, VariableType type, int length)
          Returns a new object of class 'Return Value'.
 

Uses of VariableType in com.ibm.carma.ui.action.custom
 

Methods in com.ibm.carma.ui.action.custom with parameters of type VariableType
static java.lang.String CarmaCustomActionUtil.convertObjectToString(java.lang.Object object, VariableType type)
          Converts the given object to a String.
static java.lang.Object CarmaCustomActionUtil.convertStringToObject(java.lang.String string, VariableType type)
          Converts a String to an Object.