public enum MessageSourceClassType extends Enum<MessageSourceClassType>
Enum Constant and Description |
---|
ENUM_TYPES
Enum types of the class (enumerator).
|
NAME
Name of the class.
|
OBJECT_FIELDS
Non static fields of the class.
|
PUBLIC_CONSTANTS_VALUES
Public constants values of the class.
|
PUBLIC_GETTERS
Public getters of the class.
|
PUBLIC_METHODS
Public methods of the class.
|
Modifier and Type | Method and Description |
---|---|
static MessageSourceClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageSourceClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageSourceClassType NAME
public static final MessageSourceClassType PUBLIC_CONSTANTS_VALUES
public static final MessageSourceClassType OBJECT_FIELDS
public static final MessageSourceClassType PUBLIC_GETTERS
public static final MessageSourceClassType PUBLIC_METHODS
public static final MessageSourceClassType ENUM_TYPES
public static MessageSourceClassType[] values()
for (MessageSourceClassType c : MessageSourceClassType.values()) System.out.println(c);
public static MessageSourceClassType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2013. All Rights Reserved.