com.xebialabs.deployit.core.api.dto
Enum ConfigurationItemPropertyKind

java.lang.Object
  extended by java.lang.Enum<ConfigurationItemPropertyKind>
      extended by com.xebialabs.deployit.core.api.dto.ConfigurationItemPropertyKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConfigurationItemPropertyKind>

public enum ConfigurationItemPropertyKind
extends java.lang.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_CI
          A List of references to ConfigurationItemDtos.
LIST_OF_STRING
          A List of of Strings.
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

BOOLEAN

public static final ConfigurationItemPropertyKind BOOLEAN
A boolean.


INTEGER

public static final ConfigurationItemPropertyKind INTEGER
An int


STRING

public static final ConfigurationItemPropertyKind STRING
A String.


ENUM

public static final ConfigurationItemPropertyKind ENUM
An Enum.


LIST_OF_CI

public static final ConfigurationItemPropertyKind LIST_OF_CI
A List of references to ConfigurationItemDtos.


LIST_OF_STRING

public static final ConfigurationItemPropertyKind LIST_OF_STRING
A List of of Strings.


SET_OF_STRING

public static final ConfigurationItemPropertyKind SET_OF_STRING
A Set of Strings.


CI

public static final ConfigurationItemPropertyKind CI
A reference to a ConfigurationItemDto.


SET_OF_CI

public static final ConfigurationItemPropertyKind SET_OF_CI
A Set of references to ConfigurationItemDtos.


MAP_STRING_STRING

public static final ConfigurationItemPropertyKind MAP_STRING_STRING
A Map of String to String


UNSUPPORTED

public static final ConfigurationItemPropertyKind UNSUPPORTED
An unsupported property type.

Method Detail

values

public static ConfigurationItemPropertyKind[] 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 (ConfigurationItemPropertyKind c : ConfigurationItemPropertyKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ConfigurationItemPropertyKind valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null