public enum RowMatchingCondition extends Enum<RowMatchingCondition>
Enum Constant and Description |
---|
EXACT
Accepts if all expected/actual data are matched.
|
NONE
Always accepts.
|
PARTIAL
Accepts if all existing actual data matched.
|
Modifier and Type | Method and Description |
---|---|
static RowMatchingCondition |
getConditonByJapanseName(String key)
Returns an item about the
Japanese name . |
String |
getJapaneseName()
Returns the Japanese name of this item.
|
static String[] |
getJapaneseNames()
Returns the available Japanese names.
|
static RowMatchingCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowMatchingCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowMatchingCondition EXACT
public static final RowMatchingCondition PARTIAL
public static final RowMatchingCondition NONE
public static RowMatchingCondition[] values()
for (RowMatchingCondition c : RowMatchingCondition.values()) System.out.println(c);
public static RowMatchingCondition 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 getJapaneseName()
public static RowMatchingCondition getConditonByJapanseName(String key)
Japanese name
.key
- the Japanese namenull
if there is no such the itempublic static String[] getJapaneseNames()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.