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

jalse.entities.annotations.GetEntities Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package jalse.entities.annotations;

import jalse.entities.Entity;
import jalse.entities.EntityContainer;
import jalse.entities.functions.GetEntitiesFunction;
import jalse.entities.methods.GetEntitiesMethod;

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

/**
 * An {@link Entity} type annotation for:
 * 
    *
  • {@link EntityContainer#getEntities()}
  • *
  • {@link EntityContainer#getEntitiesOfType(Class)}
  • *
  • {@link EntityContainer#getEntitiesAsType(Class)}
  • *
* The method is selected based on whether type filtering is enabled ({@link #ofType()}).
*
* See {@link GetEntitiesFunction} for acceptable method signatures. * * @author Elliot Ford * * @see GetEntitiesMethod * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface GetEntities { /** * Default type filtering ({@code true}). */ public static final boolean DEFAULT_OF_TYPE = true; /** * Whether filtering of type is performed. * * @return Filter of type. * * @see GetEntities#DEFAULT_OF_TYPE */ boolean ofType() default DEFAULT_OF_TYPE; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy