com.iphrase.runtime.query.result
Class Summarized.Text
java.lang.Object
|
+--com.iphrase.runtime.query.result.Summarized
|
+--com.iphrase.runtime.query.result.Summarized.Text
- Enclosing class:
- Summarized
- public static class Summarized.Text
- extends Summarized
Represent a summarized text feature value.
Constructor Summary |
Summarized.Text(java.lang.String[] strings)
Construct a new summarized text feature value. |
Method Summary |
boolean |
equals(java.lang.Object obj)
Override Object.equals(java.lang.Object) |
boolean |
getIsTruncated()
Determine if the summarized list was truncated (limited) by the server. |
java.lang.String[] |
getStrings()
Get the array of text strings associated with this summarized text. |
boolean |
isTruncated()
Determine if the summarized list was truncated (limited) by the server. |
Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Summarized.Text
public Summarized.Text(java.lang.String[] strings)
- Construct a new summarized text feature value.
- Parameters:
strings
- array of String
getStrings
public java.lang.String[] getStrings()
- Get the array of text strings associated with this summarized text.
isTruncated
public boolean isTruncated()
- Determine if the summarized list was truncated (limited) by the server.
- Returns:
true
if truncated, else false
getIsTruncated
public boolean getIsTruncated()
- Determine if the summarized list was truncated (limited) by the server.
Identical to
isTruncated()
, but starts with 'get' in order to
expose bean property to JSP/JSTL.
- Returns:
true
if truncated, else false
equals
public boolean equals(java.lang.Object obj)
- Override
Object.equals(java.lang.Object)
- Overrides:
equals
in class java.lang.Object
- Parameters:
obj
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj
argument; false
otherwise.