public enum INCHI_RET extends Enum<INCHI_RET>
Enum Constant and Description |
---|
BUSY |
EOF |
ERROR |
FATAL |
OKAY |
SKIP |
UNKNOWN |
WARNING |
Modifier and Type | Method and Description |
---|---|
static INCHI_RET |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INCHI_RET[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INCHI_RET SKIP
public static final INCHI_RET EOF
public static final INCHI_RET OKAY
public static final INCHI_RET WARNING
public static final INCHI_RET ERROR
public static final INCHI_RET FATAL
public static final INCHI_RET UNKNOWN
public static final INCHI_RET BUSY
public static INCHI_RET[] values()
for (INCHI_RET c : INCHI_RET.values()) System.out.println(c);
public static INCHI_RET 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 nullCopyright © 2022. All rights reserved.