Enum RntbdRequestRecord.Stage
- java.lang.Object
-
- java.lang.Enum<RntbdRequestRecord.Stage>
-
- com.microsoft.azure.cosmosdb.internal.directconnectivity.rntbd.RntbdRequestRecord.Stage
-
- All Implemented Interfaces:
Serializable,Comparable<RntbdRequestRecord.Stage>
- Enclosing class:
- RntbdRequestRecord
public static enum RntbdRequestRecord.Stage extends Enum<RntbdRequestRecord.Stage>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RntbdRequestRecord.StagevalueOf(String name)Returns the enum constant of this type with the specified name.static RntbdRequestRecord.Stage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUEUED
public static final RntbdRequestRecord.Stage QUEUED
-
PIPELINED
public static final RntbdRequestRecord.Stage PIPELINED
-
SENT
public static final RntbdRequestRecord.Stage SENT
-
RECEIVED
public static final RntbdRequestRecord.Stage RECEIVED
-
COMPLETED
public static final RntbdRequestRecord.Stage COMPLETED
-
-
Method Detail
-
values
public static RntbdRequestRecord.Stage[] 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 (RntbdRequestRecord.Stage c : RntbdRequestRecord.Stage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RntbdRequestRecord.Stage 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 nameNullPointerException- if the argument is null
-
-