|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<OVAExprType>
com.newisys.ova.OVAExprType
public enum OVAExprType
Enumeration of OVA expression types.
| Enum Constant Summary | |
|---|---|
Check
The assertion is an ova_check_* expression. |
|
Cover
The assertion is an ova_cover_* expression. |
|
Forbid
The assertion is an ova_forbid_* expression. |
|
NotCover
TODO: document OVAExprType.NotCover. |
|
OVA
TODO: document OVAExprType.OVA |
|
| Method Summary | |
|---|---|
static OVAExprType |
forValue(int value)
Returns the OVAExprType for the given integer value. |
int |
getValue()
Returns the integer value associated with this OVAExprType. |
static OVAExprType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OVAExprType[] |
values()
Returns an array containing the constants of this enum type, in the order they're 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 |
|---|
public static final OVAExprType OVA
public static final OVAExprType Check
public static final OVAExprType Forbid
public static final OVAExprType Cover
public static final OVAExprType NotCover
| Method Detail |
|---|
public static final OVAExprType[] values()
for(OVAExprType c : OVAExprType.values())
System.out.println(c);
public static OVAExprType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic int getValue()
public static OVAExprType forValue(int value)
value - the value for which to return an OVAExprType
value
IllegalArgumentException - if value does not
correspond to any OVAExprType
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||