Enum NodeType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Unknown
Not initialised
Regular
Regular walking node
Rotation
Fake node to indicate rotation (eg. "rotate left")
Turn
Regular walking node, with a turn (eg. "turn left")
Lift
Lift
Escalator
Escalator
Travelator
Walking band / slide
AngularStairs
Stairs with an angle (different x,y on different floors)
RotationalStairs
Staircase (same x,y on each floor)
ServiceLift
Lift for service / internal use
SkewedLift
Skewed lift
SecurityControl
Security checkpoint (eg. at the airport entrance)
BorderControl
Border control checkpoint (eg. at the immigration border)
Ramp
Ramp
Steps
Small steps on a floor
ServiceStairs
Stairs for service
Train
Train
Shuttle
Shuttle
Metro
Metro
Bridge
Bridge
CustomTransition
Any custom transition that has been created by client
IndoorOutdoorTransition
Transition Nodes that transit the user from indoor to outdoor or visa-versa
-
Method Summary
Modifier and Type Method Description final NodeType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<NodeType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final Integer
getType()
final EnumEntries<NodeType>
getEntries()
-
-
Method Detail
-
valueOf
final NodeType valueOf(String value)
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.)
-
values
final Array<NodeType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<NodeType> getEntries()
-
-
-
-