|
| IndicatorVariable (String root, String name, boolean preprocess, VariableType type) |
|
| IndicatorVariable (String root, String name, boolean preprocess, VariableType type, boolean reversed) |
|
| IndicatorVariable (String root, String name, boolean preprocess, VariableType type, String avoid) |
|
| IndicatorVariable (String root, String name, boolean preprocess, VariableType type, boolean reversed, String avoid) |
|
String | toString () |
|
String | getFullName () |
|
String | getRoot () |
|
String | getName () |
|
boolean | isPreprocess () |
|
VariableType | getType () |
|
boolean | isReversed () |
|
Set< String > | getAvoid () |
|
boolean | permits (String root) |
|
long | getMissingValue () |
|
int | hashCode () |
|
boolean | equals (Object obj) |
|
◆ IndicatorVariable() [1/4]
org.turro.indicator.IndicatorVariable.IndicatorVariable |
( |
String |
root, |
|
|
String |
name, |
|
|
boolean |
preprocess, |
|
|
VariableType |
type |
|
) |
| |
◆ IndicatorVariable() [2/4]
org.turro.indicator.IndicatorVariable.IndicatorVariable |
( |
String |
root, |
|
|
String |
name, |
|
|
boolean |
preprocess, |
|
|
VariableType |
type, |
|
|
boolean |
reversed |
|
) |
| |
◆ IndicatorVariable() [3/4]
org.turro.indicator.IndicatorVariable.IndicatorVariable |
( |
String |
root, |
|
|
String |
name, |
|
|
boolean |
preprocess, |
|
|
VariableType |
type, |
|
|
String |
avoid |
|
) |
| |
◆ IndicatorVariable() [4/4]
org.turro.indicator.IndicatorVariable.IndicatorVariable |
( |
String |
root, |
|
|
String |
name, |
|
|
boolean |
preprocess, |
|
|
VariableType |
type, |
|
|
boolean |
reversed, |
|
|
String |
avoid |
|
) |
| |
Definition at line 50 of file IndicatorVariable.java.
53 this.preprocess = preprocess;
55 this.reversed = reversed;
56 this.avoid = Strings.isBlank(avoid) ? null :
new HashSet<>(Strings.csvToList(avoid));
◆ equals()
boolean org.turro.indicator.IndicatorVariable.equals |
( |
Object |
obj | ) |
|
Definition at line 115 of file IndicatorVariable.java.
122 if (getClass() != obj.getClass()) {
126 if (this.preprocess != other.preprocess) {
129 if (!Objects.equals(
this.root, other.root)) {
132 if (!Objects.equals(
this.name, other.name)) {
135 if (this.type != other.type) {
IndicatorVariable(String root, String name, boolean preprocess, VariableType type)
◆ getAvoid()
Set<String> org.turro.indicator.IndicatorVariable.getAvoid |
( |
| ) |
|
◆ getFullName()
String org.turro.indicator.IndicatorVariable.getFullName |
( |
| ) |
|
◆ getMissingValue()
long org.turro.indicator.IndicatorVariable.getMissingValue |
( |
| ) |
|
◆ getName()
String org.turro.indicator.IndicatorVariable.getName |
( |
| ) |
|
◆ getRoot()
String org.turro.indicator.IndicatorVariable.getRoot |
( |
| ) |
|
◆ getType()
VariableType org.turro.indicator.IndicatorVariable.getType |
( |
| ) |
|
◆ hashCode()
int org.turro.indicator.IndicatorVariable.hashCode |
( |
| ) |
|
Definition at line 105 of file IndicatorVariable.java.
107 hash = 97 * hash + Objects.hashCode(this.root);
108 hash = 97 * hash + Objects.hashCode(this.name);
109 hash = 97 * hash + (this.preprocess ? 1 : 0);
110 hash = 97 * hash + Objects.hashCode(this.type);
◆ isPreprocess()
boolean org.turro.indicator.IndicatorVariable.isPreprocess |
( |
| ) |
|
◆ isReversed()
boolean org.turro.indicator.IndicatorVariable.isReversed |
( |
| ) |
|
◆ permits()
boolean org.turro.indicator.IndicatorVariable.permits |
( |
String |
root | ) |
|
◆ result()
◆ toString()
String org.turro.indicator.IndicatorVariable.toString |
( |
| ) |
|
The documentation for this class was generated from the following file: