Enum StreamSummaryContainer.Stat
- java.lang.Object
-
- java.lang.Enum<StreamSummaryContainer.Stat>
-
- org.infinispan.extendedstats.topK.StreamSummaryContainer.Stat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StreamSummaryContainer.Stat>
- Enclosing class:
- StreamSummaryContainer
public static enum StreamSummaryContainer.Stat extends java.lang.Enum<StreamSummaryContainer.Stat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOCAL_GET
LOCAL_PUT
MOST_CONTENDED_KEYS
MOST_FAILED_KEYS
MOST_LOCKED_KEYS
MOST_WRITE_SKEW_FAILED_KEYS
REMOTE_GET
REMOTE_PUT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StreamSummaryContainer.Stat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StreamSummaryContainer.Stat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REMOTE_GET
public static final StreamSummaryContainer.Stat REMOTE_GET
-
LOCAL_GET
public static final StreamSummaryContainer.Stat LOCAL_GET
-
REMOTE_PUT
public static final StreamSummaryContainer.Stat REMOTE_PUT
-
LOCAL_PUT
public static final StreamSummaryContainer.Stat LOCAL_PUT
-
MOST_LOCKED_KEYS
public static final StreamSummaryContainer.Stat MOST_LOCKED_KEYS
-
MOST_CONTENDED_KEYS
public static final StreamSummaryContainer.Stat MOST_CONTENDED_KEYS
-
MOST_FAILED_KEYS
public static final StreamSummaryContainer.Stat MOST_FAILED_KEYS
-
MOST_WRITE_SKEW_FAILED_KEYS
public static final StreamSummaryContainer.Stat MOST_WRITE_SKEW_FAILED_KEYS
-
-
Method Detail
-
values
public static StreamSummaryContainer.Stat[] 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 (StreamSummaryContainer.Stat c : StreamSummaryContainer.Stat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamSummaryContainer.Stat 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 namejava.lang.NullPointerException
- if the argument is null
-
-