Uses of Class
gov.usda.gdpc.FilterValueType

Packages that use FilterValueType
gov.usda.gdpc This is the main package for The Genomic Diversity and Phenotype Connection (GDPC). 
 

Uses of FilterValueType in gov.usda.gdpc
 

Fields in gov.usda.gdpc declared as FilterValueType
static FilterValueType FilterValueType.SINGLE_VALUE
          Filter value which is a single value.
static FilterValueType FilterValueType.RANGE
          Filter value which is a range consisting of a minimum and maximum value.
static FilterValueType FilterValueType.LIKE_VALUE
          Filter value which is a pattern with the wild card (%).
 

Methods in gov.usda.gdpc that return FilterValueType
 FilterValueType FilterValue.getType()
          Returns type of this filter value.
 FilterValueType FilterSingleValue.getType()
          Returns type of this filter value.
 FilterValueType FilterRangeValue.getType()
          Returns type of this filter value.
 FilterValueType FilterLikeValue.getType()
          Returns type of this filter value.
 FilterValueType[] Filter.getDefinedTypes()
          Gets all the filter value types that have defined critera.
 FilterValueType[] AbstractFilter.getDefinedTypes()
          Gets all the filter value types that have defined critera.
 

Methods in gov.usda.gdpc with parameters of type FilterValueType
 Property[] Filter.getDefinedProperties(FilterValueType type)
          Gets all the properties that have defined criteria for the given filter value type.
 FilterValue[] Filter.getValues(Property property, FilterValueType type)
          Gets all the values set for the given property and filter value type.
 FilterValue[] Filter.getValues(FilterValueType type)
          Gets all the values set for the given filter value type.
 Property[] AbstractFilter.getDefinedProperties(FilterValueType type)
          Gets all the properties that have defined criteria for the given filter value type.
 FilterValue[] AbstractFilter.getValues(Property property, FilterValueType type)
          Gets all the values set for the given property and filter value type.
 FilterValue[] AbstractFilter.getValues(FilterValueType type)
          Gets all the values set for the given filter value type.