public static enum Correlation.Axis extends Enum<Correlation.Axis>
Enum Constant and Description |
---|
CLASS
A Java class or interface type.
|
FIELD
A field defined within a Java type.
|
LITERAL
Indicates a literal value in the original source.
|
METHOD
A Java method.
|
Modifier and Type | Method and Description |
---|---|
static Correlation.Axis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Correlation.Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Correlation.Axis CLASS
public static final Correlation.Axis FIELD
public static final Correlation.Axis LITERAL
public static final Correlation.Axis METHOD
public static Correlation.Axis[] values()
for (Correlation.Axis c : Correlation.Axis.values()) System.out.println(c);
public static Correlation.Axis 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 © 2018. All rights reserved.