Package pl.sgjp.morfeusz
Enum MorfeuszUsage
- java.lang.Object
-
- java.lang.Enum<MorfeuszUsage>
-
- pl.sgjp.morfeusz.MorfeuszUsage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MorfeuszUsage>
public enum MorfeuszUsage extends java.lang.Enum<MorfeuszUsage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSE_ONLY
BOTH_ANALYSE_AND_GENERATE
GENERATE_ONLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MorfeuszUsage
swigToEnum(int swigValue)
int
swigValue()
static MorfeuszUsage
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MorfeuszUsage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANALYSE_ONLY
public static final MorfeuszUsage ANALYSE_ONLY
-
GENERATE_ONLY
public static final MorfeuszUsage GENERATE_ONLY
-
BOTH_ANALYSE_AND_GENERATE
public static final MorfeuszUsage BOTH_ANALYSE_AND_GENERATE
-
-
Method Detail
-
values
public static MorfeuszUsage[] 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 (MorfeuszUsage c : MorfeuszUsage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MorfeuszUsage valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
swigValue
public final int swigValue()
-
swigToEnum
public static MorfeuszUsage swigToEnum(int swigValue)
-
-