Package org.openbase.jps.core
Enum AbstractJavaProperty.ValueType
- java.lang.Object
-
- java.lang.Enum<AbstractJavaProperty.ValueType>
-
- org.openbase.jps.core.AbstractJavaProperty.ValueType
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractJavaProperty.ValueType>
- Enclosing class:
- AbstractJavaProperty<V>
public static enum AbstractJavaProperty.ValueType extends Enum<AbstractJavaProperty.ValueType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ApplicationDefaultCommandLinePropertyDefaultRuntime
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractJavaProperty.ValueTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractJavaProperty.ValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PropertyDefault
public static final AbstractJavaProperty.ValueType PropertyDefault
-
ApplicationDefault
public static final AbstractJavaProperty.ValueType ApplicationDefault
-
CommandLine
public static final AbstractJavaProperty.ValueType CommandLine
-
Runtime
public static final AbstractJavaProperty.ValueType Runtime
-
-
Method Detail
-
values
public static AbstractJavaProperty.ValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractJavaProperty.ValueType c : AbstractJavaProperty.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractJavaProperty.ValueType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-