com.corrspt.xeo.api.core
Enum AbstractModelWrapper.SystemAtts

java.lang.Object
  extended by java.lang.Enum<AbstractModelWrapper.SystemAtts>
      extended by com.corrspt.xeo.api.core.AbstractModelWrapper.SystemAtts
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AbstractModelWrapper.SystemAtts>
Enclosing class:
AbstractModelWrapper

public static enum AbstractModelWrapper.SystemAtts
extends java.lang.Enum<AbstractModelWrapper.SystemAtts>

Enumeration of System Attributes


Enum Constant Summary
BOUI
           
CLASSNAME
           
PARENT
           
SYS_DTCREATE
           
SYS_DTSAVE
           
 
Method Summary
static AbstractModelWrapper.SystemAtts valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractModelWrapper.SystemAtts[] 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

BOUI

public static final AbstractModelWrapper.SystemAtts BOUI

SYS_DTSAVE

public static final AbstractModelWrapper.SystemAtts SYS_DTSAVE

SYS_DTCREATE

public static final AbstractModelWrapper.SystemAtts SYS_DTCREATE

PARENT

public static final AbstractModelWrapper.SystemAtts PARENT

CLASSNAME

public static final AbstractModelWrapper.SystemAtts CLASSNAME
Method Detail

values

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

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

valueOf

public static AbstractModelWrapper.SystemAtts 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