Package com.isomorphic.datasource
Enum Class TextMatchStyle
- All Implemented Interfaces:
Serializable
,Comparable<TextMatchStyle>
,Constable
Represents text matching styles. Enumeration is copied from
com.smartgwt.client.types.TextMatchStyle
to remove dependency from smartgwt.jar.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExact, case-insensitiveExact, case-sensitiveStarts with.Substring. -
Method Summary
Modifier and TypeMethodDescriptionstatic TextMatchStyle
findValueOf
(String value) FindsTextMatchStyle
for specified string value.getValue()
Returnsenum
value.toString()
Returns string value of field type.
-
Enum Constant Details
-
EXACT
Exact, case-insensitive -
EXACT_CASE
Exact, case-sensitive -
STARTS_WITH
Starts with. -
SUBSTRING
Substring.
-
-
Method Details
-
getValue
Returnsenum
value.- Returns:
String
value.
-
toString
Returns string value of field type.- Returns:
String
value of field type.
-
findValueOf
FindsTextMatchStyle
for specified string value.- Parameters:
value
-String
value to find.- Returns:
TextMatchStyle
of specified value;null
- if not found.
-