Enum ConfigServerException.ErrorCode
- java.lang.Object
-
- java.lang.Enum<ConfigServerException.ErrorCode>
-
- com.yahoo.vespa.hosted.controller.api.integration.configserver.ConfigServerException.ErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigServerException.ErrorCode>
- Enclosing class:
- ConfigServerException
public static enum ConfigServerException.ErrorCode extends Enum<ConfigServerException.ErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigServerException.ErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigServerException.ErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_LOCK_FAILURE
public static final ConfigServerException.ErrorCode APPLICATION_LOCK_FAILURE
-
BAD_REQUEST
public static final ConfigServerException.ErrorCode BAD_REQUEST
-
ACTIVATION_CONFLICT
public static final ConfigServerException.ErrorCode ACTIVATION_CONFLICT
-
INTERNAL_SERVER_ERROR
public static final ConfigServerException.ErrorCode INTERNAL_SERVER_ERROR
-
INVALID_APPLICATION_PACKAGE
public static final ConfigServerException.ErrorCode INVALID_APPLICATION_PACKAGE
-
METHOD_NOT_ALLOWED
public static final ConfigServerException.ErrorCode METHOD_NOT_ALLOWED
-
NOT_FOUND
public static final ConfigServerException.ErrorCode NOT_FOUND
-
OUT_OF_CAPACITY
public static final ConfigServerException.ErrorCode OUT_OF_CAPACITY
-
REQUEST_TIMEOUT
public static final ConfigServerException.ErrorCode REQUEST_TIMEOUT
-
UNKNOWN_VESPA_VERSION
public static final ConfigServerException.ErrorCode UNKNOWN_VESPA_VERSION
-
PARENT_HOST_NOT_READY
public static final ConfigServerException.ErrorCode PARENT_HOST_NOT_READY
-
CERTIFICATE_NOT_READY
public static final ConfigServerException.ErrorCode CERTIFICATE_NOT_READY
-
LOAD_BALANCER_NOT_READY
public static final ConfigServerException.ErrorCode LOAD_BALANCER_NOT_READY
-
INCOMPLETE_RESPONSE
public static final ConfigServerException.ErrorCode INCOMPLETE_RESPONSE
-
-
Method Detail
-
values
public static ConfigServerException.ErrorCode[] 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 (ConfigServerException.ErrorCode c : ConfigServerException.ErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigServerException.ErrorCode 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
-
-