org.apache.pig
Enum PigCounters
java.lang.Object
java.lang.Enum<PigCounters>
org.apache.pig.PigCounters
- All Implemented Interfaces:
- Serializable, Comparable<PigCounters>
public enum PigCounters
- extends Enum<PigCounters>
The following enum will contain the general counters that pig uses.
Method Summary |
static PigCounters |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PigCounters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
SPILLABLE_MEMORY_MANAGER_SPILL_COUNT
public static final PigCounters SPILLABLE_MEMORY_MANAGER_SPILL_COUNT
PROACTIVE_SPILL_COUNT_BAGS
public static final PigCounters PROACTIVE_SPILL_COUNT_BAGS
PROACTIVE_SPILL_COUNT_RECS
public static final PigCounters PROACTIVE_SPILL_COUNT_RECS
values
public static PigCounters[] 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 (PigCounters c : PigCounters.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PigCounters 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 © 2012 The Apache Software Foundation