Class QueryProcessorOption<T>
- java.lang.Object
-
- com.funnelback.publicui.search.model.collection.QueryProcessorOption<T>
-
- Type Parameters:
T- Type of value
public class QueryProcessorOption<T> extends java.lang.ObjectA PADRE query processor option, with a name and a value- Author:
- nguillaumin@funnelback.com
-
-
Constructor Summary
Constructors Constructor Description QueryProcessorOption(java.lang.String name, T value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetName()QPO nameTgetValue()QPO valueinthashCode()java.lang.StringtoString()Used for debugging display, not suitable to use to generate the CLI string representation.
-
-
-
Field Detail
-
name
private final java.lang.String name
QPO name
-
value
private final T value
QPO value
-
-
Constructor Detail
-
QueryProcessorOption
public QueryProcessorOption(java.lang.String name, T value)
-
-
Method Detail
-
toString
public java.lang.String toString()
Used for debugging display, not suitable to use to generate the CLI string representation.- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getName
public java.lang.String getName()
QPO name
-
getValue
public T getValue()
QPO value
-
-