org.osm2world.console
Enum CLIArgumentsUtil.OutputMode

Object
  extended by Enum<CLIArgumentsUtil.OutputMode>
      extended by CLIArgumentsUtil.OutputMode
All Implemented Interfaces:
Serializable, Comparable<CLIArgumentsUtil.OutputMode>
Enclosing class:
CLIArgumentsUtil

public static enum CLIArgumentsUtil.OutputMode
extends Enum<CLIArgumentsUtil.OutputMode>


Enum Constant Summary
OBJ
           
PNG
           
POV
           
PPM
           
 
Method Summary
static CLIArgumentsUtil.OutputMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CLIArgumentsUtil.OutputMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OBJ

public static final CLIArgumentsUtil.OutputMode OBJ

POV

public static final CLIArgumentsUtil.OutputMode POV

PNG

public static final CLIArgumentsUtil.OutputMode PNG

PPM

public static final CLIArgumentsUtil.OutputMode PPM
Method Detail

values

public static CLIArgumentsUtil.OutputMode[] 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 (CLIArgumentsUtil.OutputMode c : CLIArgumentsUtil.OutputMode.values())
    System.out.println(c);

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

valueOf

public static CLIArgumentsUtil.OutputMode 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