パッケージ | 説明 |
---|---|
org.dbflute.testing | |
org.dbflute.testing.matcher |
修飾子とタイプ | メソッドと説明 |
---|---|
static IsColumnExpressed |
DBFluteMatchers.equal(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
EQUAL condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.equal(Object value)
A shortcut to
equal(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.greaterEqual(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
GREATER_EQUAL condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.greaterEqual(Object value)
A shortcut to
greaterEqual(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.greaterThan(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
GREATER_THAN condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.greaterThan(Object value)
A shortcut to
greaterThan(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.in(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
IN condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.in(Object... items)
A shortcut to
in(hasItems(items)) . |
static IsColumnExpressed |
DBFluteMatchers.lessEqual(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
LESS_EQUAL condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.lessEqual(Object value)
A shortcut to
lessEqual(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.lessThan(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
GREATER_THAN condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.lessThan(Object value)
A shortcut to
lessThan(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.like(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
LIKE condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.like(Object value)
A shortcut to
like(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.likeContain(String value)
A shortcut to
like(equalTo("%" + value + "%")) . |
static IsColumnExpressed |
DBFluteMatchers.likePrefix(String value)
A shortcut to
like(equalTo(value + "%")) . |
static IsColumnExpressed |
DBFluteMatchers.likeSuffix(String value)
A shortcut to
like(equalTo("%" + value)) . |
static IsColumnExpressed |
DBFluteMatchers.notEqual(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
NOT_EQUAL condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.notEqual(Object value)
A shortcut to
notEqual(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.notIn(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
NOT_IN condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.notIn(Object... items)
A shortcut to
notIn(contains(items)) . |
static IsColumnExpressed |
DBFluteMatchers.notLike(Matcher<?> matcher)
Creates a matcher that matches when the examined column has
NOT_LIKE condition with value matched with the specified
matcher . |
static IsColumnExpressed |
DBFluteMatchers.notLike(Object value)
A shortcut to
notLike(equalTo(value)) . |
static IsColumnExpressed |
DBFluteMatchers.notLikeContain(String value)
A shortcut to
notLike(equalTo("%" + value + "%")) . |
static IsColumnExpressed |
DBFluteMatchers.notLikePrefix(String value)
A shortcut to
notLike(equalTo(value + "%")) . |
static IsColumnExpressed |
DBFluteMatchers.notLikeSuffix(String value)
A shortcut to
notLike(equalTo("%" + value)) . |
修飾子とタイプ | メソッドと説明 |
---|---|
static IsColumnExpressed |
IsColumnExpressed.expressed(ComparisonOperator operator,
Matcher<?> valueMatcher) |
Copyright © 2015 The DBFlute Project. All rights reserved.