gov.usda.gdpc
Class FilterValueType

java.lang.Object
  extended bygov.usda.gdpc.FilterValueType

public class FilterValueType
extends java.lang.Object

Author:
terryc

Field Summary
static FilterValueType LIKE_VALUE
          Filter value which is a pattern with the wild card (%).
static FilterValueType RANGE
          Filter value which is a range consisting of a minimum and maximum value.
static FilterValueType SINGLE_VALUE
          Filter value which is a single value.
 
Constructor Summary
protected FilterValueType(java.lang.String name)
          FilterValueType constructor.
 
Method Summary
 boolean equals(java.lang.Object obj)
          This method made final to prevent overriding Object.equals.
 java.lang.String getName()
          Returns name of this instance.
 int hashCode()
          This method made final to prevent overriding Object.hashCode.
 java.lang.String toString()
          Returns string representation of this instance.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

SINGLE_VALUE

public static final FilterValueType SINGLE_VALUE
Filter value which is a single value.


RANGE

public static final FilterValueType RANGE
Filter value which is a range consisting of a minimum and maximum value.


LIKE_VALUE

public static final FilterValueType LIKE_VALUE
Filter value which is a pattern with the wild card (%).

Constructor Detail

FilterValueType

protected FilterValueType(java.lang.String name)
FilterValueType constructor.

Parameters:
name - filter value type name
Method Detail

toString

public final java.lang.String toString()
Returns string representation of this instance.

Returns:
string representation

getName

public final java.lang.String getName()
Returns name of this instance.

Returns:
name

equals

public final boolean equals(java.lang.Object obj)
This method made final to prevent overriding Object.equals.


hashCode

public final int hashCode()
This method made final to prevent overriding Object.hashCode.