All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.objectify.stringifier.InitializeStringifier Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
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