public enum UserConfigurationProperty extends java.lang.Enum<UserConfigurationProperty>
| Enum Constant and Description |
|---|
ALL
Specifies the identifier, dictionary, XML data, and binary data property types.
|
BINARY_DATA
Specifies binary data property types.
|
DICTIONARY
Specifies dictionary property types.
|
ID
Specifies the identifier property.
|
XML_DATA
Specifies XML data property types.
|
| Modifier and Type | Method and Description |
|---|---|
static UserConfigurationProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserConfigurationProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserConfigurationProperty ID
public static final UserConfigurationProperty DICTIONARY
public static final UserConfigurationProperty XML_DATA
public static final UserConfigurationProperty BINARY_DATA
public static final UserConfigurationProperty ALL
public static UserConfigurationProperty[] values()
for (UserConfigurationProperty c : UserConfigurationProperty.values()) System.out.println(c);
public static UserConfigurationProperty 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 namejava.lang.NullPointerException - if the argument is null