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

com.maxifier.mxcache.transform.TransformGeneratorFactory Maven / Gradle / Ivy

/*
 * Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
 */
package com.maxifier.mxcache.transform;

import javax.annotation.Nonnull;

import java.lang.annotation.Annotation;

/**
 * @author Alexander Kochurov ([email protected])
 */
public interface TransformGeneratorFactory {
    TransformGenerator forMethod(java.lang.reflect.Method method) throws InvalidTransformAnnotations;

    @Nonnull
    TransformGenerator forArgument(Annotation[] annotations, Class paramType) throws InvalidTransformAnnotations;

    TransformGenerator getTransformator(Class param, @Nonnull Transform key);

    TransformGenerator getTransformator(Class paramType, Class owner, String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy