Package com.kaltura.client.types
Enum APIException.FailureStep
- java.lang.Object
-
- java.lang.Enum<APIException.FailureStep>
-
- com.kaltura.client.types.APIException.FailureStep
-
- All Implemented Interfaces:
Serializable,Comparable<APIException.FailureStep>
- Enclosing class:
- APIException
public static enum APIException.FailureStep extends Enum<APIException.FailureStep>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OnConfigureOnPassOnRequestOnResponse
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static APIException.FailureStepvalueOf(String name)Returns the enum constant of this type with the specified name.static APIException.FailureStep[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OnRequest
public static final APIException.FailureStep OnRequest
-
OnConfigure
public static final APIException.FailureStep OnConfigure
-
OnPass
public static final APIException.FailureStep OnPass
-
OnResponse
public static final APIException.FailureStep OnResponse
-
-
Field Detail
-
code
public String code
-
-
Method Detail
-
values
public static APIException.FailureStep[] 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 (APIException.FailureStep c : APIException.FailureStep.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIException.FailureStep 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
-
-