com.azalient.api.b.network
Enum IWalkway.WalkwayType

java.lang.Object
  extended by java.lang.Enum<IWalkway.WalkwayType>
      extended by com.azalient.api.b.network.IWalkway.WalkwayType
All Implemented Interfaces:
Serializable, Comparable<IWalkway.WalkwayType>
Enclosing interface:
IWalkway

public static enum IWalkway.WalkwayType
extends Enum<IWalkway.WalkwayType>

The set of all possible walkway types


Enum Constant Summary
CHANNEL
          Pedestrian pathway
PELICAN
          Signalised, Pedestrian Activated (Pelican)
SIGNAL
          Signalised, Linked To Phase
UNMARKED
          Unsignalised, Vehicle Right of Way
ZEBRA
          Unsignalised, Pedestrian Right of Way (Zebra)
 
Method Summary
 String toString()
           
static String uniqueName(INetwork net, IWalkway.WalkwayType tt, String prefix)
           
static IWalkway.WalkwayType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IWalkway.WalkwayType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SIGNAL

public static final IWalkway.WalkwayType SIGNAL
Signalised, Linked To Phase


PELICAN

public static final IWalkway.WalkwayType PELICAN
Signalised, Pedestrian Activated (Pelican)


ZEBRA

public static final IWalkway.WalkwayType ZEBRA
Unsignalised, Pedestrian Right of Way (Zebra)


CHANNEL

public static final IWalkway.WalkwayType CHANNEL
Pedestrian pathway


UNMARKED

public static final IWalkway.WalkwayType UNMARKED
Unsignalised, Vehicle Right of Way

Method Detail

values

public static IWalkway.WalkwayType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IWalkway.WalkwayType c : IWalkway.WalkwayType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IWalkway.WalkwayType valueOf(String name)
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.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<IWalkway.WalkwayType>

uniqueName

public static String uniqueName(INetwork net,
                                IWalkway.WalkwayType tt,
                                String prefix)