public static enum JavaBuckConfig.SourceAbiVerificationMode extends Enum<JavaBuckConfig.SourceAbiVerificationMode>
| Enum Constant and Description |
|---|
FAIL
Generate ABI jars from classes and from source.
|
LOG
Generate ABI jars from classes and from source.
|
OFF
Don't verify ABI jars.
|
| Modifier and Type | Method and Description |
|---|---|
static JavaBuckConfig.SourceAbiVerificationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaBuckConfig.SourceAbiVerificationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaBuckConfig.SourceAbiVerificationMode OFF
public static final JavaBuckConfig.SourceAbiVerificationMode LOG
public static final JavaBuckConfig.SourceAbiVerificationMode FAIL
public static JavaBuckConfig.SourceAbiVerificationMode[] values()
for (JavaBuckConfig.SourceAbiVerificationMode c : JavaBuckConfig.SourceAbiVerificationMode.values()) System.out.println(c);
public static JavaBuckConfig.SourceAbiVerificationMode 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