Package io.opencensus.common
Enum ServerStatsFieldEnums.Id
- java.lang.Object
-
- java.lang.Enum<ServerStatsFieldEnums.Id>
-
- io.opencensus.common.ServerStatsFieldEnums.Id
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ServerStatsFieldEnums.Id>
- Enclosing class:
- ServerStatsFieldEnums
public static enum ServerStatsFieldEnums.Id extends java.lang.Enum<ServerStatsFieldEnums.Id>
Available Ids forServerStats
attributes.- Since:
- 0.16
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SERVER_STATS_LB_LATENCY_ID
Id for Latency observed at Load Balancer.SERVER_STATS_SERVICE_LATENCY_ID
Id for Latency observed at Server.SERVER_STATS_TRACE_OPTION_ID
Id for Trace options.
-
Field Summary
Fields Modifier and Type Field Description private static java.util.TreeMap<java.lang.Integer,ServerStatsFieldEnums.Id>
map
private int
value
-
Constructor Summary
Constructors Modifier Constructor Description private
Id(int value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
value()
Returns the numerical value of theServerStatsFieldEnums.Id
.static ServerStatsFieldEnums.Id
valueOf(int value)
Returns theServerStatsFieldEnums.Id
representing the value value of the id.static ServerStatsFieldEnums.Id
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ServerStatsFieldEnums.Id[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVER_STATS_LB_LATENCY_ID
public static final ServerStatsFieldEnums.Id SERVER_STATS_LB_LATENCY_ID
Id for Latency observed at Load Balancer.- Since:
- 0.16
-
SERVER_STATS_SERVICE_LATENCY_ID
public static final ServerStatsFieldEnums.Id SERVER_STATS_SERVICE_LATENCY_ID
Id for Latency observed at Server.- Since:
- 0.16
-
SERVER_STATS_TRACE_OPTION_ID
public static final ServerStatsFieldEnums.Id SERVER_STATS_TRACE_OPTION_ID
Id for Trace options.- Since:
- 0.16
-
-
Field Detail
-
value
private final int value
-
map
private static final java.util.TreeMap<java.lang.Integer,ServerStatsFieldEnums.Id> map
-
-
Method Detail
-
values
public static ServerStatsFieldEnums.Id[] 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 (ServerStatsFieldEnums.Id c : ServerStatsFieldEnums.Id.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServerStatsFieldEnums.Id 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
-
value
public int value()
Returns the numerical value of theServerStatsFieldEnums.Id
.- Returns:
- the numerical value of the
Id
. - Since:
- 0.16
-
valueOf
@Nullable public static ServerStatsFieldEnums.Id valueOf(int value)
Returns theServerStatsFieldEnums.Id
representing the value value of the id.- Parameters:
value
- integer value for whichId
is being requested.- Returns:
- the numerical value of the id. null if the id is not valid
- Since:
- 0.16
-
-