com.hqme.cm
Enum VSDProperties.SProperty

java.lang.Object
  extended by java.lang.Enum<VSDProperties.SProperty>
      extended by com.hqme.cm.VSDProperties.SProperty
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VSDProperties.SProperty>
Enclosing class:
VSDProperties

public static enum VSDProperties.SProperty
extends java.lang.Enum<VSDProperties.SProperty>


Enum Constant Summary
S_LOCKED
           
S_NAME
           
S_ORIGIN
           
S_SIZE
           
S_SOURCEURI
           
S_TYPE
           
 
Method Summary
static VSDProperties.SProperty valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VSDProperties.SProperty[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

S_NAME

public static final VSDProperties.SProperty S_NAME

S_SIZE

public static final VSDProperties.SProperty S_SIZE

S_SOURCEURI

public static final VSDProperties.SProperty S_SOURCEURI

S_ORIGIN

public static final VSDProperties.SProperty S_ORIGIN

S_LOCKED

public static final VSDProperties.SProperty S_LOCKED

S_TYPE

public static final VSDProperties.SProperty S_TYPE
Method Detail

values

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

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

valueOf

public static VSDProperties.SProperty 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