Enum Matrix2D.BucketNaming
- Object
-
- Enum<Matrix2D.BucketNaming>
-
- BucketNaming
-
- All Implemented Interfaces:
Serializable
,Comparable<Matrix2D.BucketNaming>
- Enclosing interface:
- Matrix2D
public static enum Matrix2D.BucketNaming extends Enum<Matrix2D.BucketNaming>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Matrix2D.BucketNaming
valueOf(String name)
Returns the enum constant of this type with the specified name.static Matrix2D.BucketNaming[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABC
public static final Matrix2D.BucketNaming ABC
-
INT
public static final Matrix2D.BucketNaming INT
-
RANGE
public static final Matrix2D.BucketNaming RANGE
-
RANGE_PCT
public static final Matrix2D.BucketNaming RANGE_PCT
-
-
Method Detail
-
values
public static Matrix2D.BucketNaming[] 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 (Matrix2D.BucketNaming c : Matrix2D.BucketNaming.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Matrix2D.BucketNaming valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-