Package com.exedio.cope
Class UppercaseView
- java.lang.Object
-
- com.exedio.cope.Feature
-
- com.exedio.cope.View<String>
-
- com.exedio.cope.StringView
-
- com.exedio.cope.UppercaseView
-
- All Implemented Interfaces:
Function<String>
,Selectable<String>
,StringFunction
,Serializable
public final class UppercaseView extends StringView
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UppercaseView(Function<String> source)
Creates a new UppercaseView.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
append(com.exedio.cope.Statement bf, Join join)
Deprecated.static LikeCondition
containsIgnoreCase(Function<String> function, String value)
static LikeCondition
endsWithIgnoreCase(Function<String> function, String value)
static Condition
equalIgnoreCase(Function<String> function, String value)
static LikeCondition
likeIgnoreCase(Function<String> function, String value)
String
mapJava(Object[] sourceValues)
static LikeCondition
startsWithIgnoreCase(Function<String> function, String value)
-
Methods inherited from class com.exedio.cope.StringView
getValueType
-
Methods inherited from class com.exedio.cope.View
appendSelect, check, equals, get, get, getObject, getSources, getType, getValueClass, hashCode
-
Methods inherited from class com.exedio.cope.Feature
afterModelCreated, getAbstractType, getAnnotation, getID, getLocalizationKeys, getName, getPattern, isAnnotationPresent, isSourceAlready, mount, readResolve, requireMounted, toString, toString, writeReplace
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.exedio.cope.Function
any, between, equal, equal, equal, get, get, greater, greater, greaterOrEqual, greaterOrEqual, in, in, isNotNull, isNull, less, less, lessOrEqual, lessOrEqual, max, min, notEqual, notEqual
-
Methods inherited from interface com.exedio.cope.Selectable
appendSelect, check, getType, getValueClass, toString
-
Methods inherited from interface com.exedio.cope.StringFunction
bind, contains, containsIgnoreCase, endsWith, endsWithIgnoreCase, equalIgnoreCase, length, like, likeIgnoreCase, startsWith, startsWithIgnoreCase, toUpperCase
-
-
-
-
Constructor Detail
-
UppercaseView
public UppercaseView(Function<String> source)
Creates a new UppercaseView. Instead of using this constructor directly, you may want to use the more convenient wrapper methodStringFunction.toUpperCase()
.
-
-
Method Detail
-
append
@Deprecated public void append(com.exedio.cope.Statement bf, Join join)
Deprecated.
-
likeIgnoreCase
public static LikeCondition likeIgnoreCase(Function<String> function, String value)
-
startsWithIgnoreCase
public static LikeCondition startsWithIgnoreCase(Function<String> function, String value)
-
endsWithIgnoreCase
public static LikeCondition endsWithIgnoreCase(Function<String> function, String value)
-
containsIgnoreCase
public static LikeCondition containsIgnoreCase(Function<String> function, String value)
-
-