public static enum SceneColorizer.Comparison extends java.lang.Enum<SceneColorizer.Comparison>
Enum Constant and Description |
---|
Greater |
GreaterOrEqual |
Less |
LessOrEqual |
Modifier and Type | Field and Description |
---|---|
SceneColorizer.DoubleComparer |
comparer |
java.lang.String |
symbol |
private static SceneColorizer.Comparison[] |
values |
Modifier and Type | Method and Description |
---|---|
boolean |
compare(double lhs,
double rhs) |
static SceneColorizer.Comparison |
fromSymbol(java.lang.String symbol) |
SceneColorizer.DoubleComparer |
getComparer() |
static SceneColorizer.Comparison |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SceneColorizer.Comparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SceneColorizer.Comparison Greater
public static final SceneColorizer.Comparison GreaterOrEqual
public static final SceneColorizer.Comparison Less
public static final SceneColorizer.Comparison LessOrEqual
public final SceneColorizer.DoubleComparer comparer
public final java.lang.String symbol
private static SceneColorizer.Comparison[] values
public boolean compare(double lhs, double rhs)
public static SceneColorizer.Comparison fromSymbol(java.lang.String symbol)
public SceneColorizer.DoubleComparer getComparer()
public static SceneColorizer.Comparison valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SceneColorizer.Comparison[] values()
for (SceneColorizer.Comparison c : SceneColorizer.Comparison.values()) System.out.println(c);