public enum UpdateFlags extends java.lang.Enum<UpdateFlags>
Enum Constant and Description |
---|
AnticipateTurns |
None |
ObstacleAvoidance |
OptimizeTopology |
OptimizeVisibility |
Separation |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static UpdateFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateFlags None
public static final UpdateFlags AnticipateTurns
public static final UpdateFlags ObstacleAvoidance
public static final UpdateFlags Separation
public static final UpdateFlags OptimizeVisibility
public static final UpdateFlags OptimizeTopology
public static UpdateFlags[] values()
for (UpdateFlags c : UpdateFlags.values()) System.out.println(c);
public static UpdateFlags 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 int getValue()