public enum ErrorCode extends Enum<ErrorCode>
| Enum Constant and Description |
|---|
SET_REFERENCE_FAILED_OPPOSITE_ALREADY_SET |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ErrorCode |
parse(int asInt) |
static ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode SET_REFERENCE_FAILED_OPPOSITE_ALREADY_SET
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode 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 int getCode()
public static ErrorCode parse(int asInt)
Copyright © 2016 OpenSource BIM. All rights reserved.