public static enum KotlinLibraryDescription.AnnotationProcessingTool extends Enum<KotlinLibraryDescription.AnnotationProcessingTool>
Enum Constant and Description |
---|
JAVAC
Works only against Java sources, Kotlin sources won't have access to generated classes at
compile time.
|
KAPT
Default tool for Kotlin modules.
|
Modifier and Type | Method and Description |
---|---|
static KotlinLibraryDescription.AnnotationProcessingTool |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KotlinLibraryDescription.AnnotationProcessingTool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KotlinLibraryDescription.AnnotationProcessingTool KAPT
public static final KotlinLibraryDescription.AnnotationProcessingTool JAVAC
public static KotlinLibraryDescription.AnnotationProcessingTool[] values()
for (KotlinLibraryDescription.AnnotationProcessingTool c : KotlinLibraryDescription.AnnotationProcessingTool.values()) System.out.println(c);
public static KotlinLibraryDescription.AnnotationProcessingTool valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null