public enum ColumnMatchingCondition extends Enum<ColumnMatchingCondition>
Enum Constant and Description |
---|
EXACT
Accepts equivalent values.
|
NONE
Accepts anything.
|
NOW
Accepts if actual date/time is between the test started time and its finished time.
|
PARTIAL
Accepts if expected data appears in the actual data.
|
TODAY
Accepts if actual date/time is between the test started date and its finished date.
|
Modifier and Type | Method and Description |
---|---|
static ColumnMatchingCondition |
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 ColumnMatchingCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnMatchingCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnMatchingCondition NONE
public static final ColumnMatchingCondition EXACT
public static final ColumnMatchingCondition PARTIAL
public static final ColumnMatchingCondition NOW
public static final ColumnMatchingCondition TODAY
public static ColumnMatchingCondition[] values()
for (ColumnMatchingCondition c : ColumnMatchingCondition.values()) System.out.println(c);
public static ColumnMatchingCondition 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 ColumnMatchingCondition 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.