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

com.fibanez.jsonschema.content.generator.Generator Maven / Gradle / Ivy

package com.fibanez.jsonschema.content.generator;

import com.fibanez.jsonschema.content.generator.util.ReflectionUtils;

import java.util.function.Supplier;

@FunctionalInterface
public interface Generator extends Supplier {

    @SuppressWarnings("unchecked")
    default Class classType() {
        return (Class) ReflectionUtils.getClassType(this.getClass());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy