public enum PackageValidationResultType extends java.lang.Enum<PackageValidationResultType>
| Enum Constant and Description |
|---|
ALL_VALID
All signature containers in signature package is valid
|
CONTAINS_INCOMPLETE
At least one of the containers in signature package could not be
validated, possibly because of missing resources
|
CONTAINS_INVALID
at least one of the container in signature package has a problem
|
| Modifier and Type | Method and Description |
|---|---|
static PackageValidationResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PackageValidationResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageValidationResultType ALL_VALID
public static final PackageValidationResultType CONTAINS_INVALID
public static final PackageValidationResultType CONTAINS_INCOMPLETE
public static PackageValidationResultType[] values()
for (PackageValidationResultType c : PackageValidationResultType.values()) System.out.println(c);
public static PackageValidationResultType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2025. All rights reserved.