org.apache.spark.status.api.v1
Enum TaskSorting

Object
  extended by Enum<TaskSorting>
      extended by org.apache.spark.status.api.v1.TaskSorting
All Implemented Interfaces:
java.io.Serializable, Comparable<TaskSorting>

public enum TaskSorting
extends Enum<TaskSorting>


Enum Constant Summary
DECREASING_RUNTIME
           
ID
           
INCREASING_RUNTIME
           
 
Method Summary
static TaskSorting fromString(String str)
           
static TaskSorting valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TaskSorting[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ID

public static final TaskSorting ID

INCREASING_RUNTIME

public static final TaskSorting INCREASING_RUNTIME

DECREASING_RUNTIME

public static final TaskSorting DECREASING_RUNTIME
Method Detail

values

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

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

valueOf

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

fromString

public static TaskSorting fromString(String str)