Enum RequestTypeGetJwt
- java.lang.Object
-
- java.lang.Enum<RequestTypeGetJwt>
-
- cloud.genesys.webmessaging.sdk.model.RequestTypeGetJwt
-
- All Implemented Interfaces:
Serializable,Comparable<RequestTypeGetJwt>
public enum RequestTypeGetJwt extends Enum<RequestTypeGetJwt>
Gets or Sets RequestType.GetJwt
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GETJWT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RequestTypeGetJwtfromString(String key)StringtoString()static RequestTypeGetJwtvalueOf(String name)Returns the enum constant of this type with the specified name.static RequestTypeGetJwt[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GETJWT
public static final RequestTypeGetJwt GETJWT
-
-
Method Detail
-
values
public static RequestTypeGetJwt[] 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 (RequestTypeGetJwt c : RequestTypeGetJwt.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequestTypeGetJwt 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
-
fromString
public static RequestTypeGetJwt fromString(String key)
-
toString
public String toString()
- Overrides:
toStringin classEnum<RequestTypeGetJwt>
-
-