com.redhat.ceylon.compiler.java.metadata.CharacterValue Maven / Gradle / Ivy
package com.redhat.ceylon.compiler.java.metadata;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Applied to a default parameter value method,
* the character default value.
*
* Within a {@link CharacterExprs}, the character value of the "literal"
* expression.
*/
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.METHOD)
public @interface CharacterValue {
String name() default "";
int[] value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy