org.apache.hadoop.yarn.server.timeline
Enum TimelineStore.SystemFilter

java.lang.Object
  extended by java.lang.Enum<TimelineStore.SystemFilter>
      extended by org.apache.hadoop.yarn.server.timeline.TimelineStore.SystemFilter
All Implemented Interfaces:
Serializable, Comparable<TimelineStore.SystemFilter>
Enclosing interface:
TimelineStore

@InterfaceAudience.Private
public static enum TimelineStore.SystemFilter
extends Enum<TimelineStore.SystemFilter>

The system filter which will be automatically added to a TimelineEntity's primary filter section when storing the entity. The filter key is case sensitive. Users are supposed not to use the key reserved by the timeline system.


Enum Constant Summary
ENTITY_OWNER
           
 
Method Summary
static TimelineStore.SystemFilter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TimelineStore.SystemFilter[] 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

ENTITY_OWNER

public static final TimelineStore.SystemFilter ENTITY_OWNER
Method Detail

values

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

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

valueOf

public static TimelineStore.SystemFilter 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 © 2014 Apache Software Foundation. All Rights Reserved.