public static enum ConditionalConverter.MatchResult extends Enum<ConditionalConverter.MatchResult>
Enum Constant and Description |
---|
FULL
Indicates that the source and destination types were matched.
|
NONE
Indicates that the destination type was not matched.
|
PARTIAL
Indicates that only the destination type was matched.
|
Modifier and Type | Method and Description |
---|---|
static ConditionalConverter.MatchResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionalConverter.MatchResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionalConverter.MatchResult FULL
public static final ConditionalConverter.MatchResult PARTIAL
public static final ConditionalConverter.MatchResult NONE
public static ConditionalConverter.MatchResult[] values()
for (ConditionalConverter.MatchResult c : ConditionalConverter.MatchResult.values()) System.out.println(c);
public static ConditionalConverter.MatchResult 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 © 2011–2024. All rights reserved.