|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<PropertySimpleType> org.rhq.core.domain.configuration.definition.PropertySimpleType
public enum PropertySimpleType
These represent the supported data types for PropertySimple
values.
Enum Constant Summary | |
---|---|
BOOLEAN
A boolean value - "true" or "false" |
|
DIRECTORY
The absolute path to a directory on the target platform (maximum length is 2000) |
|
DOUBLE
|
|
FILE
The absolute path to a file on the target platform (maximum length is 2000) |
|
FLOAT
|
|
INTEGER
|
|
LONG
|
|
LONG_STRING
Multi-line strings (maximum length is 2000) |
|
PASSWORD
Strings where the value is hidden at entry and not redisplayed (maximum length is 2000) |
|
STRING
Single-line strings (maximum length is 2000) |
Method Summary | |
---|---|
static PropertySimpleType |
fromXmlName(String xmlName)
|
static PropertySimpleType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PropertySimpleType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
String |
xmlName()
|
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 PropertySimpleType STRING
public static final PropertySimpleType LONG_STRING
public static final PropertySimpleType PASSWORD
public static final PropertySimpleType BOOLEAN
public static final PropertySimpleType INTEGER
public static final PropertySimpleType LONG
public static final PropertySimpleType FLOAT
public static final PropertySimpleType DOUBLE
public static final PropertySimpleType FILE
public static final PropertySimpleType DIRECTORY
Method Detail |
---|
public static PropertySimpleType[] values()
for (PropertySimpleType c : PropertySimpleType.values()) System.out.println(c);
public static PropertySimpleType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String xmlName()
public static PropertySimpleType fromXmlName(String xmlName)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |