|
jlscp v0.8 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ParameterType>
org.linuxsampler.lscp.ParameterType
public enum ParameterType
Represents the parameter type.
Enum Constant Summary | |
---|---|
BOOL
Indicates that the parameter contains boolean value |
|
BOOL_LIST
Indicates that the parameter contains list of boolean values |
|
FLOAT
Indicates that the parameter contains float value |
|
FLOAT_LIST
Indicates that the parameter contains list of float values |
|
INT
Indicates that the parameter contains integer value |
|
INT_LIST
Indicates that the parameter contains list of integer values |
|
STRING
Indicates that the parameter contains string value |
|
STRING_LIST
Indicates that the parameter contains list of string values |
Method Summary | |
---|---|
static ParameterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ParameterType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ParameterType BOOL
public static final ParameterType INT
public static final ParameterType FLOAT
public static final ParameterType STRING
public static final ParameterType BOOL_LIST
public static final ParameterType INT_LIST
public static final ParameterType FLOAT_LIST
public static final ParameterType STRING_LIST
Method Detail |
---|
public static ParameterType[] values()
for (ParameterType c : ParameterType.values()) System.out.println(c);
public static ParameterType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
jlscp v0.8 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |