Package edu.jas.poly
Enum GenPolynomialTokenizer.coeffType
- java.lang.Object
-
- java.lang.Enum<GenPolynomialTokenizer.coeffType>
-
- edu.jas.poly.GenPolynomialTokenizer.coeffType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GenPolynomialTokenizer.coeffType>
- Enclosing class:
- GenPolynomialTokenizer
private static enum GenPolynomialTokenizer.coeffType extends java.lang.Enum<GenPolynomialTokenizer.coeffType>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
coeffType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GenPolynomialTokenizer.coeffType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GenPolynomialTokenizer.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 GenPolynomialTokenizer.coeffType BigRat
-
BigInt
public static final GenPolynomialTokenizer.coeffType BigInt
-
ModInt
public static final GenPolynomialTokenizer.coeffType ModInt
-
BigC
public static final GenPolynomialTokenizer.coeffType BigC
-
BigQ
public static final GenPolynomialTokenizer.coeffType BigQ
-
BigO
public static final GenPolynomialTokenizer.coeffType BigO
-
BigD
public static final GenPolynomialTokenizer.coeffType BigD
-
ANrat
public static final GenPolynomialTokenizer.coeffType ANrat
-
ANmod
public static final GenPolynomialTokenizer.coeffType ANmod
-
IntFunc
public static final GenPolynomialTokenizer.coeffType IntFunc
-
-
Method Detail
-
values
public static GenPolynomialTokenizer.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 (GenPolynomialTokenizer.coeffType c : GenPolynomialTokenizer.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 GenPolynomialTokenizer.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
-
-