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

net.amygdalum.testrecorder.profile.Excluded Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package net.amygdalum.testrecorder.profile;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotating a field or class with {@link Excluded} excludes it from serialization.
 * 
 * @see SerializationProfile#getClassExclusions()
 * @see SerializationProfile#getFieldExclusions()
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD, ElementType.FIELD })
public @interface Excluded {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy