public static enum HashMatrix.Result extends java.lang.Enum<HashMatrix.Result>
Enum Constant and Description |
---|
BOTH_NOT_FOUND |
COL_NOT_FOUND |
EXISTS |
NOT_EXISTS |
ROW_NOT_FOUND |
Modifier and Type | Method and Description |
---|---|
static HashMatrix.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HashMatrix.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashMatrix.Result BOTH_NOT_FOUND
public static final HashMatrix.Result ROW_NOT_FOUND
public static final HashMatrix.Result COL_NOT_FOUND
public static final HashMatrix.Result NOT_EXISTS
public static final HashMatrix.Result EXISTS
public static HashMatrix.Result[] values()
for (HashMatrix.Result c : HashMatrix.Result.values()) System.out.println(c);
public static HashMatrix.Result valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null