public static enum VgMyRouteStyler.RouteStyle extends java.lang.Enum<VgMyRouteStyler.RouteStyle>
Enum Constant and Description |
---|
eClassic
Classic style, base plus animated track
|
eMultiAgents
There are multiple agents that follow the path of the positions Since these are individual agents, they will never be distorted.
|
eMultiLine
Base texture plus animated track, but uses multiple ones such that they seem to be the same size regardless of the distance.
|
eMultiLinePlusAgent
There are multiple agents that follow the path of the positions a base track.
|
eSimplifiedMultiLinePlusAgent
Same as eMultiLinePlusAgent, but when seen from far, the paths are simplified such that there is less distortion and motion.
|
Modifier and Type | Method and Description |
---|---|
static VgMyRouteStyler.RouteStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VgMyRouteStyler.RouteStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VgMyRouteStyler.RouteStyle eClassic
public static final VgMyRouteStyler.RouteStyle eMultiLine
public static final VgMyRouteStyler.RouteStyle eMultiAgents
public static final VgMyRouteStyler.RouteStyle eMultiLinePlusAgent
public static final VgMyRouteStyler.RouteStyle eSimplifiedMultiLinePlusAgent
public static VgMyRouteStyler.RouteStyle[] values()
for (VgMyRouteStyler.RouteStyle c : VgMyRouteStyler.RouteStyle.values()) System.out.println(c);
public static VgMyRouteStyler.RouteStyle 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