Uses of Interface
gov.sandia.cognition.data.convert.DataConverter

Packages that use DataConverter
gov.sandia.cognition.data.convert Provides utilities for doing data type conversion. 
gov.sandia.cognition.data.convert.number Provides utilities for doing data type conversion with numbers. 
gov.sandia.cognition.data.convert.vector Provides utilities for doing data type conversion with vectors. 
 

Uses of DataConverter in gov.sandia.cognition.data.convert
 

Classes in gov.sandia.cognition.data.convert with type parameters of type DataConverter
 class AbstractReverseCachedDataConverter<InputType,OutputType,ReverseConverterType extends DataConverter<? super OutputType,? extends InputType>>
          Abstract implementation of ReversibleDataConverter that caches the reverse converter.
 

Subinterfaces of DataConverter in gov.sandia.cognition.data.convert
 interface ReversibleDataConverter<InputType,OutputType>
          Represents a DataConverter whose conversion can be reversed.
 

Classes in gov.sandia.cognition.data.convert that implement DataConverter
 class AbstractDataConverter<InputType,OutputType>
          Abstract implementation of DataConverter interface.
 class AbstractReverseCachedDataConverter<InputType,OutputType,ReverseConverterType extends DataConverter<? super OutputType,? extends InputType>>
          Abstract implementation of ReversibleDataConverter that caches the reverse converter.
 class AbstractReversibleDataConverter<InputType,OutputType>
          Abstract implementation of sthe ReversibleDataConverter interface.
 class IdentityDataConverter<DataType>
          A pass-through converter that just returns the given value.
 class ObjectToStringConverter
          Converts an Object to a String using the toString method.
 

Fields in gov.sandia.cognition.data.convert declared as DataConverter
protected  ReverseConverterType AbstractReverseCachedDataConverter.reverse
          A cached value of the reverse converter.
 

Methods in gov.sandia.cognition.data.convert that return DataConverter
 DataConverter<? super OutputType,? extends InputType> ReversibleDataConverter.reverse()
          Gets the data converter that performs the reverse conversion.
 

Uses of DataConverter in gov.sandia.cognition.data.convert.number
 

Classes in gov.sandia.cognition.data.convert.number that implement DataConverter
 class DefaultBooleanToNumberConverter
          Converts a Boolean to a Number by using predefined values for true, false, and (optionally) null.
 class DefaultBooleanToNumberConverter.Reverse
          The reverse converter for the DefaultBooleanToNumberConverter.
 class StringToDoubleConverter
          Converts a String to a Double using the Double.valueOf method.
 class StringToIntegerConverter
          Converts a String to a Integer using the Integer.valueOf method.
 

Uses of DataConverter in gov.sandia.cognition.data.convert.vector
 

Subinterfaces of DataConverter in gov.sandia.cognition.data.convert.vector
 interface DataToVectorEncoder<InputType>
          Defines a converter that can be used to encode data into a Vector.
 

Classes in gov.sandia.cognition.data.convert.vector that implement DataConverter
 class AbstractToVectorEncoder<InputType>
          An abstract implementation of the DataToVectorEncoder interface.
 class NumberConverterToVectorAdapter<InputType>
          Adapts a DataConverter that outputs a number to be a VectorEncoder.
 class NumberToVectorEncoder
          An encoder that encodes a number as an element of a Vector.
 class UniqueBooleanVectorEncoder<InputType>
          An encoder for arbitrary objects that encodes an equality comparison between a given input and a set of unique values.
 

Fields in gov.sandia.cognition.data.convert.vector declared as DataConverter
protected  DataConverter<? super InputType,? extends Number> NumberConverterToVectorAdapter.converter
          The converter to adapt for use with Vectors.
 

Methods in gov.sandia.cognition.data.convert.vector that return DataConverter
 DataConverter<? super InputType,? extends Number> NumberConverterToVectorAdapter.getConverter()
          Gets the number converter being adapted to work with vectors.
 

Methods in gov.sandia.cognition.data.convert.vector with parameters of type DataConverter
 void NumberConverterToVectorAdapter.setConverter(DataConverter<? super InputType,? extends Number> converter)
          Sets the number converter being adapted to work with vectors.
 

Constructors in gov.sandia.cognition.data.convert.vector with parameters of type DataConverter
NumberConverterToVectorAdapter(DataConverter<? super InputType,? extends Number> converter)
          Creates a new NumberConverterToVectorAdapter for the given converter.
 



Copyright © 2006-2013 Sandia National Laboratories. All Rights Reserved.