public enum ContainerValidationResultType extends java.lang.Enum<ContainerValidationResultType>
| Enum Constant and Description |
|---|
ALL_VALID
All isgnatures in signature container is valid
|
CONTAINS_INCOMPLETE
At least one of the signatures in signature container could not be
validated, possibly because of missing resources
|
CONTAINS_INVALID
at least one of the signatures in signature container has a problem
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerValidationResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerValidationResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerValidationResultType ALL_VALID
public static final ContainerValidationResultType CONTAINS_INVALID
public static final ContainerValidationResultType CONTAINS_INCOMPLETE
public static ContainerValidationResultType[] values()
for (ContainerValidationResultType c : ContainerValidationResultType.values()) System.out.println(c);
public static ContainerValidationResultType 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.