EM_LLR_Utils
Enum SeedGenerator.SeedConfinement

java.lang.Object
  extended by java.lang.Enum<SeedGenerator.SeedConfinement>
      extended by EM_LLR_Utils.SeedGenerator.SeedConfinement
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SeedGenerator.SeedConfinement>
Enclosing class:
SeedGenerator<T extends edu.tau.compbio.interaction.AnnotatedInteractorSet>

public static enum SeedGenerator.SeedConfinement
extends java.lang.Enum<SeedGenerator.SeedConfinement>


Enum Constant Summary
CONFINED_SUBSET
           
NON_CONFINED_SUBSET
           
 
Method Summary
static SeedGenerator.SeedConfinement valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SeedGenerator.SeedConfinement[] 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

CONFINED_SUBSET

public static final SeedGenerator.SeedConfinement CONFINED_SUBSET

NON_CONFINED_SUBSET

public static final SeedGenerator.SeedConfinement NON_CONFINED_SUBSET
Method Detail

values

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

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

valueOf

public static SeedGenerator.SeedConfinement 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