Package com.exedio.cope
Class MatchCondition
- java.lang.Object
-
- com.exedio.cope.Condition
-
- com.exedio.cope.MatchCondition
-
- All Implemented Interfaces:
Serializable
public final class MatchCondition extends Condition
A condition matching a fulltext index. EXPERIMENTAL!!! Cope has no support for creating fulltext indexes together with the schema yet, so you have to do this manually. MySQL: create fulltext index index_name on table_name (column_name) Oracle: create index index_name ON table_name(column_name) indextype is CTXSYS.CONTEXT- Author:
- Ralf Wiebicke
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MatchCondition(StringFunction function, String value)
Creates a new MatchCondition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
int
hashCode()
-
-
-
Field Detail
-
function
public final StringFunction function
-
value
public final String value
-
-
Constructor Detail
-
MatchCondition
public MatchCondition(StringFunction function, String value)
Creates a new MatchCondition. EXPERIMENTAL!!!
-
-