com.googlecode.objectify.stringifier.InitializeStringifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify Show documentation
Show all versions of objectify Show documentation
The simplest convenient interface to the Google App Engine datastore
package com.googlecode.objectify.stringifier;
import com.googlecode.objectify.ObjectifyFactory;
import java.lang.reflect.Type;
/**
* If a Stringifier> implements this interface, it will be called once just after construction
* with the actual Type of the key to stringify.
*
* @author Jeff Schnitzer
*/
public interface InitializeStringifier
{
/**
* Informs the stringifier of the actual key type.
*
* @param fact is just handy to have around
* @param keyType is the declared type of the map key.
*/
void init(ObjectifyFactory fact, Type keyType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy