public static enum Conversions.ConversionType extends java.lang.Enum<Conversions.ConversionType>
| Enum Constant and Description |
|---|
ASSIGNMENT |
CASTING |
METHOD |
| Modifier and Type | Method and Description |
|---|---|
static Conversions.ConversionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Conversions.ConversionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Conversions.ConversionType ASSIGNMENT
public static final Conversions.ConversionType CASTING
public static final Conversions.ConversionType METHOD
public static Conversions.ConversionType[] values()
for (Conversions.ConversionType c : Conversions.ConversionType.values())
System.out.println(c);
public static Conversions.ConversionType 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 namejava.lang.NullPointerException - if the argument is null