public static enum OpCandidate.StatusCode extends Enum<OpCandidate.StatusCode>
Enum Constant and Description |
---|
ARG_TYPES_DO_NOT_MATCH |
CANNOT_CONVERT |
DOES_NOT_CONFORM |
INVALID_MODULE |
MATCH |
OTHER |
OUTPUT_TYPES_DO_NOT_MATCH |
REQUIRED_ARG_IS_NULL |
TOO_FEW_ARGS |
TOO_FEW_OUTPUTS |
TOO_MANY_ARGS |
Modifier and Type | Method and Description |
---|---|
static OpCandidate.StatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpCandidate.StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpCandidate.StatusCode MATCH
public static final OpCandidate.StatusCode INVALID_MODULE
public static final OpCandidate.StatusCode TOO_FEW_OUTPUTS
public static final OpCandidate.StatusCode OUTPUT_TYPES_DO_NOT_MATCH
public static final OpCandidate.StatusCode TOO_MANY_ARGS
public static final OpCandidate.StatusCode TOO_FEW_ARGS
public static final OpCandidate.StatusCode ARG_TYPES_DO_NOT_MATCH
public static final OpCandidate.StatusCode REQUIRED_ARG_IS_NULL
public static final OpCandidate.StatusCode CANNOT_CONVERT
public static final OpCandidate.StatusCode DOES_NOT_CONFORM
public static final OpCandidate.StatusCode OTHER
public static OpCandidate.StatusCode[] values()
for (OpCandidate.StatusCode c : OpCandidate.StatusCode.values()) System.out.println(c);
public static OpCandidate.StatusCode 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 nullCopyright © 2014–2022 ImageJ. All rights reserved.