Enum EColorTables
- java.lang.Object
-
- java.lang.Enum<EColorTables>
-
- org.hortonmachine.gears.utils.colors.EColorTables
-
- All Implemented Interfaces:
Serializable,Comparable<EColorTables>
public enum EColorTables extends Enum<EColorTables>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description aspectbathymetricbluescontrastingcontrasting130elevextrainbowflowgeomorphongreensgreyscalegreyscaleinverselogarithmicnetradiationrainbowredsseashalstabslopetc3tc9tcaviolets
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EColorTablesvalueOf(String name)Returns the enum constant of this type with the specified name.static EColorTables[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
rainbow
public static final EColorTables rainbow
-
extrainbow
public static final EColorTables extrainbow
-
aspect
public static final EColorTables aspect
-
flow
public static final EColorTables flow
-
bathymetric
public static final EColorTables bathymetric
-
elev
public static final EColorTables elev
-
logarithmic
public static final EColorTables logarithmic
-
radiation
public static final EColorTables radiation
-
net
public static final EColorTables net
-
shalstab
public static final EColorTables shalstab
-
greyscale
public static final EColorTables greyscale
-
greyscaleinverse
public static final EColorTables greyscaleinverse
-
geomorphon
public static final EColorTables geomorphon
-
tca
public static final EColorTables tca
-
tc3
public static final EColorTables tc3
-
tc9
public static final EColorTables tc9
-
sea
public static final EColorTables sea
-
slope
public static final EColorTables slope
-
reds
public static final EColorTables reds
-
blues
public static final EColorTables blues
-
greens
public static final EColorTables greens
-
violets
public static final EColorTables violets
-
contrasting130
public static final EColorTables contrasting130
-
contrasting
public static final EColorTables contrasting
-
-
Method Detail
-
values
public static EColorTables[] 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 (EColorTables c : EColorTables.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EColorTables 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
-
-