/* * Copyright 2015 WEI CHEN LIN * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.sora.util.akatsuki; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Defines a constraint for type matching */ @Target(ElementType.ANNOTATION_TYPE) @Retention(RetentionPolicy.CLASS) public @interface TypeConstraint { /** * Matching class for this constraint. Annotated class are also supported, * simply supply the annotation class instead of the type. */ Class<?>type(); /** * Bounds for class type matching. (When used on an annotation class, the * bound applies to the annotated element, see fields in * {@link com.sora.util.akatsuki.TypeConstraint.Bound} for more details). * <p> * If different bounds are required for different types, you can use * multiple {@link TypeConstraint}s together * */ Bound bound() default Bound.EXACTLY; /** * Class matching bounds */ enum Bound { /** * Has the same meaning of {@code A.class.equals(B.class)}. If used on * annotations,the bound matches classes that is being annotated * directly. */ EXACTLY, /** * Has the same meaning of {@code A.class.isAssignableFrom(B.class)}. If * used on annotations, the bound matches classes that inherits from a * class that contains the annotation. */ EXTENDS, /** * Has the same meaning of * {@code A.class.equals(B.class.getSuperclass())} where the inheritance * hierarchy is transversed and checked for equality all the way up to * {@link Object}. If used on annotations, the bound matches classes * that inherits from a class that contains the annotation. */ SUPER } }