public static enum AnnotationProcessingQuery.Trigger extends Enum<AnnotationProcessingQuery.Trigger>
Enum Constant and Description |
---|
IN_EDITOR
Annotation processors should run on every modification of a file in editor
|
ON_SCAN
Annotation processors should run on scanning
|
Modifier and Type | Method and Description |
---|---|
static AnnotationProcessingQuery.Trigger |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationProcessingQuery.Trigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationProcessingQuery.Trigger ON_SCAN
public static final AnnotationProcessingQuery.Trigger IN_EDITOR
public static AnnotationProcessingQuery.Trigger[] values()
for (AnnotationProcessingQuery.Trigger c : AnnotationProcessingQuery.Trigger.values()) System.out.println(c);
public static AnnotationProcessingQuery.Trigger 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 nullBuilt on October 1 2023. | Copyright © 2017-2023 Apache Software Foundation. All Rights Reserved.