public enum Method extends java.lang.Enum<Method>
For more documentation, please refer POJO-TESTER User Guide documentation
Enum Constant and Description |
---|
CONSTRUCTOR
|
EQUALS
|
GETTER
|
HASH_CODE
|
SETTER
|
TO_STRING
|
Modifier and Type | Method and Description |
---|---|
static Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Method EQUALS
public static final Method HASH_CODE
public static final Method SETTER
public static final Method GETTER
public static final Method TO_STRING
public static final Method CONSTRUCTOR
public static Method[] values()
for (Method c : Method.values()) System.out.println(c);
public static Method valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no
constant with the specified name
java.lang.NullPointerException
- if the argument is null