public static enum JkCoordinate.ConflictStrategy extends java.lang.Enum<JkCoordinate.ConflictStrategy>
Enum Constant and Description |
---|
FAIL |
TAKE_FIRST |
TAKE_HIGHEST |
TAKE_LOWEST |
Modifier and Type | Method and Description |
---|---|
static JkCoordinate.ConflictStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JkCoordinate.ConflictStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JkCoordinate.ConflictStrategy TAKE_FIRST
public static final JkCoordinate.ConflictStrategy TAKE_HIGHEST
public static final JkCoordinate.ConflictStrategy TAKE_LOWEST
public static final JkCoordinate.ConflictStrategy FAIL
public static JkCoordinate.ConflictStrategy[] values()
for (JkCoordinate.ConflictStrategy c : JkCoordinate.ConflictStrategy.values()) System.out.println(c);
public static JkCoordinate.ConflictStrategy 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 null