de.glossmaker.gloss.datastructure
Enum EOperation

Package class diagram package EOperation
java.lang.Object
  extended by java.lang.Enum<EOperation>
      extended by de.glossmaker.gloss.datastructure.EOperation
All Implemented Interfaces:
Serializable, Comparable<EOperation>

public enum EOperation
extends Enum<EOperation>

Author:
Markus Flingelli

Enum Constant Summary
IMPORT
           
KEEP
           
MERGE
           
NOTHING
           
OVERRIDE
           
 
Method Summary
static EOperation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EOperation[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOTHING

public static final EOperation NOTHING

OVERRIDE

public static final EOperation OVERRIDE

MERGE

public static final EOperation MERGE

KEEP

public static final EOperation KEEP

IMPORT

public static final EOperation IMPORT
Method Detail

values

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

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

valueOf

public static EOperation 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


Copyright © 2010 - 2011 Markus Flingelli. All Rights Reserved.