![JAR search and dependency download from the Maven repository](/logo.png)
org.pojomatic.annotations.PojoFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pojomatic Show documentation
Show all versions of pojomatic Show documentation
Automatically provides configurable implementations of the
equals(Object), hashCode() and toString() methods inherited from java.lang.Object
package org.pojomatic.annotations;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.pojomatic.formatter.PojoFormatter;
/**
* Specifies formatting information to be used for creating {@code String} representations of POJOs.
* @see PojoFormatter
*/
@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface PojoFormat {
/**
* The formatter to use for creating a {@code String} representation.
*/
public Class extends PojoFormatter> value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy