Class FloatTranslatorFactory
java.lang.Object
com.googlecode.objectify.impl.translate.FloatTranslatorFactory
- All Implemented Interfaces:
TranslatorFactory<Number,
Double>
Floats are funky in the datastore. You can save numbers of any size, but they always retrieve as Double. For the hell of it, we also handle String in the datastore by trying to parse it.
Not a ValueTranslatorFactory because Numbers are not assignable to primitives. Java lame.
- Author:
- Jeff Schnitzer <[email protected]>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate
(TypeKey<Number> tk, CreateContext ctx, Path path) Create a translator for a type.
-
Constructor Details
-
FloatTranslatorFactory
public FloatTranslatorFactory()
-
-
Method Details
-
create
Description copied from interface:TranslatorFactory
Create a translator for a type.- Specified by:
create
in interfaceTranslatorFactory<Number,
Double> - Parameters:
tk
- defines the type which is to be translatedpath
- is where this type was discovered, important for logging and exceptions- Returns:
- null if this factory does not know how to deal with that situation.
-