Uses of Class
org.stanwood.media.source.xbmc.expression.ValueType

Packages that use ValueType
org.stanwood.media.actions.rename   
org.stanwood.media.source.xbmc.expression   
 

Uses of ValueType in org.stanwood.media.actions.rename
 

Methods in org.stanwood.media.actions.rename that return ValueType
 ValueType Token.getType()
          Get the type of the token
 

Uses of ValueType in org.stanwood.media.source.xbmc.expression
 

Methods in org.stanwood.media.source.xbmc.expression that return ValueType
 ValueType Value.getType()
          Used to get the type of the value
static ValueType ValueType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ValueType[] ValueType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.stanwood.media.source.xbmc.expression with parameters of type ValueType
static Value ValueFactory.createValue(ValueType type, java.lang.String value)
          Create a value
 void Value.setType(ValueType type)
          Used to set the type of the value
 

Constructors in org.stanwood.media.source.xbmc.expression with parameters of type ValueType
BooleanValue(ValueType type, java.lang.Boolean value)
          Used to create a instance of the class
IntegerValue(ValueType type, java.lang.Integer value)
          The constructor
StringValue(ValueType type, java.lang.String value)
          Used to create a instance of the class
Value(ValueType type, java.lang.Object value)
          The constructor