Package edu.jas.application
Enum RingFactoryTokenizer.coeffType
- java.lang.Object
-
- java.lang.Enum<RingFactoryTokenizer.coeffType>
-
- edu.jas.application.RingFactoryTokenizer.coeffType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RingFactoryTokenizer.coeffType>
- Enclosing class:
- RingFactoryTokenizer
private static enum RingFactoryTokenizer.coeffType extends java.lang.Enum<RingFactoryTokenizer.coeffType>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
coeffType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RingFactoryTokenizer.coeffType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RingFactoryTokenizer.coeffType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BigRat
public static final RingFactoryTokenizer.coeffType BigRat
-
BigInt
public static final RingFactoryTokenizer.coeffType BigInt
-
ModInt
public static final RingFactoryTokenizer.coeffType ModInt
-
BigC
public static final RingFactoryTokenizer.coeffType BigC
-
BigQ
public static final RingFactoryTokenizer.coeffType BigQ
-
BigD
public static final RingFactoryTokenizer.coeffType BigD
-
ANrat
public static final RingFactoryTokenizer.coeffType ANrat
-
ANmod
public static final RingFactoryTokenizer.coeffType ANmod
-
RatFunc
public static final RingFactoryTokenizer.coeffType RatFunc
-
ModFunc
public static final RingFactoryTokenizer.coeffType ModFunc
-
IntFunc
public static final RingFactoryTokenizer.coeffType IntFunc
-
-
Method Detail
-
values
public static RingFactoryTokenizer.coeffType[] 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 (RingFactoryTokenizer.coeffType c : RingFactoryTokenizer.coeffType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RingFactoryTokenizer.coeffType 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
-
-