public enum DefaultInterfaceDetector extends Enum<DefaultInterfaceDetector> implements InterfaceDetector
InterfaceDetector
.Enum Constant and Description |
---|
ALL_CLASSES |
CLASS_HIERARCHY |
DISABLED
Do not detect anything.
|
INTERFACES |
Modifier and Type | Method and Description |
---|---|
static DefaultInterfaceDetector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultInterfaceDetector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
detect
public static final DefaultInterfaceDetector DISABLED
public static final DefaultInterfaceDetector INTERFACES
public static final DefaultInterfaceDetector CLASS_HIERARCHY
public static final DefaultInterfaceDetector ALL_CLASSES
public static DefaultInterfaceDetector[] values()
for (DefaultInterfaceDetector c : DefaultInterfaceDetector.values()) System.out.println(c);
public static DefaultInterfaceDetector 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 © 2006–2019. All rights reserved.