org.dmtf.schemas.ovf.envelope
Enum StartActionTypes

java.lang.Object
  extended by java.lang.Enum<StartActionTypes>
      extended by org.dmtf.schemas.ovf.envelope.StartActionTypes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StartActionTypes>, Enumerator

public enum StartActionTypes
extends java.lang.Enum<StartActionTypes>
implements Enumerator

A representation of the literals of the enumeration 'Start Action Types', and utility methods for working with them.

See Also:
EnvelopePackage.getStartActionTypes()

Enum Constant Summary
NONE_TYPE
          The 'None Type' literal object.
POWER_ON_TYPE
          The 'Power On Type' literal object.
 
Field Summary
static int NONE_TYPE_VALUE
          The 'None Type' literal value.
static int POWER_ON_TYPE_VALUE
          The 'Power On Type' literal value.
static java.util.List<StartActionTypes> VALUES
          A public read-only list of all the 'Start Action Types' enumerators.
 
Method Summary
static StartActionTypes get(int value)
          Returns the 'Start Action Types' literal with the specified integer value.
static StartActionTypes get(java.lang.String literal)
          Returns the 'Start Action Types' literal with the specified literal value.
static StartActionTypes getByName(java.lang.String name)
          Returns the 'Start Action Types' literal with the specified name.
 java.lang.String getLiteral()
           
 java.lang.String getName()
           
 int getValue()
           
 java.lang.String toString()
          Returns the literal value of the enumerator, which is its string representation.
static StartActionTypes valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StartActionTypes[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

POWER_ON_TYPE

public static final StartActionTypes POWER_ON_TYPE
The 'Power On Type' literal object.

See Also:
POWER_ON_TYPE_VALUE

NONE_TYPE

public static final StartActionTypes NONE_TYPE
The 'None Type' literal object.

See Also:
NONE_TYPE_VALUE
Field Detail

POWER_ON_TYPE_VALUE

public static final int POWER_ON_TYPE_VALUE
The 'Power On Type' literal value.

If the meaning of 'Power On Type' literal object isn't clear, there really should be more of a description here...

See Also:
POWER_ON_TYPE, Constant Field Values

NONE_TYPE_VALUE

public static final int NONE_TYPE_VALUE
The 'None Type' literal value.

If the meaning of 'None Type' literal object isn't clear, there really should be more of a description here...

See Also:
NONE_TYPE, Constant Field Values

VALUES

public static final java.util.List<StartActionTypes> VALUES
A public read-only list of all the 'Start Action Types' enumerators.

Method Detail

values

public static final StartActionTypes[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(StartActionTypes c : StartActionTypes.values())
        System.out.println(c);

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

valueOf

public static StartActionTypes 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

get

public static StartActionTypes get(java.lang.String literal)
Returns the 'Start Action Types' literal with the specified literal value.


getByName

public static StartActionTypes getByName(java.lang.String name)
Returns the 'Start Action Types' literal with the specified name.


get

public static StartActionTypes get(int value)
Returns the 'Start Action Types' literal with the specified integer value.


getValue

public int getValue()

Specified by:
getValue in interface Enumerator

getName

public java.lang.String getName()

Specified by:
getName in interface Enumerator

getLiteral

public java.lang.String getLiteral()

Specified by:
getLiteral in interface Enumerator

toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<StartActionTypes>


© Copyright 2008 IBM Corp. 2008 All Rights Reserved