|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ConfigurationItemPropertyKind>
com.xebialabs.deployit.core.api.dto.ConfigurationItemPropertyKind
public enum ConfigurationItemPropertyKind
Enumeration of possible configuration item types.
| Enum Constant Summary | |
|---|---|
BOOLEAN
A boolean. |
|
CI
A reference to a ConfigurationItemDto. |
|
ENUM
An Enum. |
|
INTEGER
An int |
|
LIST_OF_OBJECT
A List of non-CI objects. |
|
MAP_STRING_STRING
A Map of String to String |
|
SET_OF_CI
A Set of references to ConfigurationItemDtos. |
|
SET_OF_STRING
A Set of Strings. |
|
STRING
A String. |
|
UNSUPPORTED
An unsupported property type. |
|
| Method Summary | |
|---|---|
static ConfigurationItemPropertyKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ConfigurationItemPropertyKind[] |
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 ConfigurationItemPropertyKind BOOLEAN
public static final ConfigurationItemPropertyKind INTEGER
public static final ConfigurationItemPropertyKind STRING
String.
public static final ConfigurationItemPropertyKind ENUM
Enum.
public static final ConfigurationItemPropertyKind LIST_OF_OBJECT
List of non-CI objects.
public static final ConfigurationItemPropertyKind SET_OF_STRING
Set of Strings.
public static final ConfigurationItemPropertyKind CI
ConfigurationItemDto.
public static final ConfigurationItemPropertyKind SET_OF_CI
Set of references to ConfigurationItemDtos.
public static final ConfigurationItemPropertyKind MAP_STRING_STRING
Map of String to String
public static final ConfigurationItemPropertyKind UNSUPPORTED
| Method Detail |
|---|
public static ConfigurationItemPropertyKind[] values()
for (ConfigurationItemPropertyKind c : ConfigurationItemPropertyKind.values()) System.out.println(c);
public static ConfigurationItemPropertyKind 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
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||