cz.cuni.jagrlib.worker
Enum Search2DWorker.DistributionType

java.lang.Object
  extended by java.lang.Enum<Search2DWorker.DistributionType>
      extended by cz.cuni.jagrlib.worker.Search2DWorker.DistributionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Search2DWorker.DistributionType>
Enclosing class:
Search2DWorker

protected static enum Search2DWorker.DistributionType
extends java.lang.Enum<Search2DWorker.DistributionType>

Implemented data-set types.


Enum Constant Summary
DISTR_LORENTZ_XZ
          [x,z] projection of Lorentz attractor.
DISTR_UNIFORM
          Uniform random points.
 
Method Summary
static Search2DWorker.DistributionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Search2DWorker.DistributionType[] 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

DISTR_UNIFORM

public static final Search2DWorker.DistributionType DISTR_UNIFORM
Uniform random points.


DISTR_LORENTZ_XZ

public static final Search2DWorker.DistributionType DISTR_LORENTZ_XZ
[x,z] projection of Lorentz attractor.

Method Detail

values

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

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

valueOf

public static Search2DWorker.DistributionType 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