Package com.c8db.velocystream
Enum RequestType
- java.lang.Object
-
- java.lang.Enum<RequestType>
-
- com.c8db.velocystream.RequestType
-
- All Implemented Interfaces:
Serializable,Comparable<RequestType>
public enum RequestType extends Enum<RequestType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEGETHEADILLEGALOPTIONSPATCHPOSTPUTVSTREAM_CREDVSTREAM_REGISTERVSTREAM_STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RequestTypefromType(int type)intgetType()static RequestTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RequestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETE
public static final RequestType DELETE
-
GET
public static final RequestType GET
-
POST
public static final RequestType POST
-
PUT
public static final RequestType PUT
-
HEAD
public static final RequestType HEAD
-
PATCH
public static final RequestType PATCH
-
OPTIONS
public static final RequestType OPTIONS
-
VSTREAM_CRED
public static final RequestType VSTREAM_CRED
-
VSTREAM_REGISTER
public static final RequestType VSTREAM_REGISTER
-
VSTREAM_STATUS
public static final RequestType VSTREAM_STATUS
-
ILLEGAL
public static final RequestType ILLEGAL
-
-
Method Detail
-
values
public static RequestType[] 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 (RequestType c : RequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestType 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
-
getType
public int getType()
-
fromType
public static RequestType fromType(int type)
-
-