Enum Driver.VectorType

java.lang.Object
  extended by java.lang.Enum<Driver.VectorType>
      extended by Driver.VectorType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Driver.VectorType>
Enclosing class:
Driver

public static enum Driver.VectorType
extends java.lang.Enum<Driver.VectorType>

This enum specifies the type that Vector to be created The VectorType enum has the following values:

Identical
All the Integer Objects are identical in value.
Random
All the Integer Objects are random in value.
Increasing
All the Integer Objects are increasing in value.
Decreasing
All the Integer Objects are decreasing in value.
IncreasingAndRandom
80% the Integer Objects are increasing in value, the rest are random in value.


Enum Constant Summary
Decreasing
           
Identical
           
Increasing
           
IncreasingAndRandom
           
Random
           
 
Method Summary
static Driver.VectorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Driver.VectorType[] 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

Identical

public static final Driver.VectorType Identical

Random

public static final Driver.VectorType Random

Increasing

public static final Driver.VectorType Increasing

Decreasing

public static final Driver.VectorType Decreasing

IncreasingAndRandom

public static final Driver.VectorType IncreasingAndRandom
Method Detail

values

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

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

valueOf

public static Driver.VectorType 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