public enum CimErrorCode extends Enum<CimErrorCode>
Enum Constant and Description |
---|
FAILEDOPERATION |
INVALIDPARAMETER |
MISSINGPARAMETER |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static CimErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CimErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CimErrorCode FAILEDOPERATION
public static final CimErrorCode INVALIDPARAMETER
public static final CimErrorCode MISSINGPARAMETER
public static CimErrorCode[] values()
for (CimErrorCode c : CimErrorCode.values()) System.out.println(c);
public static CimErrorCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
Copyright © 2023. All rights reserved.