public class ResultKeyword
extends java.lang.Object
Constructor and Description |
---|
ResultKeyword(java.lang.String keyword)
Creates a new keyword
|
Modifier and Type | Method and Description |
---|---|
ResultKeyword |
asBatch()
Returns a version of the given keyword as batch keyword.
|
ResultKeyword |
asConfidenceInterval()
Returns a version of the given keyword as confidence interval keyword.
|
ResultKeyword |
asExport()
Returns a version of the given keyword which is suitable as a export
keyword.
|
static java.lang.String |
asExport(java.lang.String keyword) |
ResultKeyword |
asList()
Returns a version of the given keyword which is suitable as a list
keyword.
|
static java.lang.String |
asList(java.lang.String keyword) |
ResultKeyword |
asMax()
Returns a version of the given keyword as maximum keyword.
|
ResultKeyword |
asMean()
Returns a version of the given keyword as mean keyword.
|
ResultKeyword |
asMin()
Returns a version of the given keyword as minimum keyword.
|
boolean |
equals(java.lang.Object obj)
A print keyword is equal to a string if they both contain the same text
ignoring case.
|
java.lang.String |
toString() |
public ResultKeyword(java.lang.String keyword)
public boolean equals(java.lang.Object obj)
This brakes the equals
and hashCode
contract with String
. You can't mix print keywords and strings in maps for example.
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public ResultKeyword asList()
public static java.lang.String asList(java.lang.String keyword)
public ResultKeyword asExport()
The keyword will be prefixed by
ex_
, although this might change.
public static java.lang.String asExport(java.lang.String keyword)
public ResultKeyword asBatch()
b).
public ResultKeyword asConfidenceInterval()
cint).
public ResultKeyword asMean()
mean).
public ResultKeyword asMin()
min).
public ResultKeyword asMax()
max).