public static enum EqualityHelperExtensionProvider.SpecificMatch extends Enum<EqualityHelperExtensionProvider.SpecificMatch>
Enum Constant and Description |
---|
MATCH
If these objects have been determined to be a match by this extension.
|
UNKNOWN
This means that this specific extension provider doesn't know how to handle the given objects.
|
UNMATCH
If these objects have been determined to not match by this extension.
|
Modifier and Type | Method and Description |
---|---|
static EqualityHelperExtensionProvider.SpecificMatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EqualityHelperExtensionProvider.SpecificMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EqualityHelperExtensionProvider.SpecificMatch UNKNOWN
public static final EqualityHelperExtensionProvider.SpecificMatch MATCH
public static final EqualityHelperExtensionProvider.SpecificMatch UNMATCH
public static EqualityHelperExtensionProvider.SpecificMatch[] values()
for (EqualityHelperExtensionProvider.SpecificMatch c : EqualityHelperExtensionProvider.SpecificMatch.values()) System.out.println(c);
public static EqualityHelperExtensionProvider.SpecificMatch 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
Copyright (c) 2006, 2015 Obeo and others. All rights reserved.