de.uniba.cogsys.app2igor.args
Enum MaudeArgs

java.lang.Object
  extended by java.lang.Enum<MaudeArgs>
      extended by de.uniba.cogsys.app2igor.args.MaudeArgs
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MaudeArgs>

public enum MaudeArgs
extends java.lang.Enum<MaudeArgs>

Author:
Thomas Hieber

Enum Constant Summary
ANSI_COLOR
           
BATCH
           
NO_ADVISE
           
NO_ANSI_COLOR
           
NO_BANNER
           
NO_MIFIX
           
NO_PRELUDE
           
NO_TECLA
           
NO_WRAP
           
TECLA
           
 
Method Summary
static MaudeArgs valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MaudeArgs[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_PRELUDE

public static final MaudeArgs NO_PRELUDE

NO_BANNER

public static final MaudeArgs NO_BANNER

NO_ADVISE

public static final MaudeArgs NO_ADVISE

NO_MIFIX

public static final MaudeArgs NO_MIFIX

NO_WRAP

public static final MaudeArgs NO_WRAP

ANSI_COLOR

public static final MaudeArgs ANSI_COLOR

NO_ANSI_COLOR

public static final MaudeArgs NO_ANSI_COLOR

TECLA

public static final MaudeArgs TECLA

NO_TECLA

public static final MaudeArgs NO_TECLA

BATCH

public static final MaudeArgs BATCH
Method Detail

values

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

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

valueOf

public static MaudeArgs valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null