org.hibernate.test.criteria
Enum Code
java.lang.Object
java.lang.Enum<Code>
org.hibernate.test.criteria.Code
- All Implemented Interfaces:
- Serializable, Comparable<Code>
public enum Code
- extends Enum<Code>
Method Summary |
static Code |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
ADM
public static final Code ADM
CEN
public static final Code CEN
RPA
public static final Code RPA
RPP
public static final Code RPP
PRJ
public static final Code PRJ
HUB
public static final Code HUB
RQS
public static final Code RQS
OAD
public static final Code OAD
ORP
public static final Code ORP
ORQ
public static final Code ORQ
values
public static Code[] 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 (Code c : Code.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Code valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.