|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.zipxap.vfs.dal.utility.Construct
public class Construct
A construct is a set of words, space separated, that are used to match words in a search, regardless of the whitespace characters between those words.
This interface is part of the KavaPL base API.
| Milestone | Who | Date, Time |
|---|---|---|
| Initial Version | K Penrose | June 23, 2007, 3:37 PM |
** Note that this table is not intended as an exhaustive list of subtle changes. It is intended to list changes that break the compatibility of older code, or major enhancements/rewrites
| Constructor Summary | |
|---|---|
Construct(java.lang.String construct)
Create a construct from a set of words, space separated, that are used to match words in a search, regardless of the whitespace characters between those words. |
|
Construct(java.lang.String construct,
boolean acceptAnyWhitespace)
Create a construct from a set of words, space separated, that are used to match words in a search, regardless of the whitespace characters between those words. |
|
| Method Summary | |
|---|---|
static boolean |
equals(java.lang.String s1,
java.lang.String s2,
boolean ignoreCase,
boolean acceptAnyWhitespace)
Determine if the two specified strings are equivalent constructs. |
java.util.List<java.lang.String> |
getWords()
|
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Construct(java.lang.String construct)
construct - a set of words, space separated
public Construct(java.lang.String construct,
boolean acceptAnyWhitespace)
construct - a set of words, space separatedacceptAnyWhitespace - Set this to true if we should treat any whitespace
character as a word separator, otherwise only a space character (' ') will be
treated as a word separator.| Method Detail |
|---|
public java.util.List<java.lang.String> getWords()
public java.lang.String toString()
toString in class java.lang.Object
public static boolean equals(java.lang.String s1,
java.lang.String s2,
boolean ignoreCase,
boolean acceptAnyWhitespace)
s1 - s2 - ignoreCase - acceptAnyWhitespace - Set this to true if we should treat any whitespace
character as a word separator, otherwise only a space character (' ') will be
treated as a word separator. * @return
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||