public static enum PackageObjectFactory.ModuleLoadOption extends Enum<PackageObjectFactory.ModuleLoadOption>
Enum Constant and Description |
---|
SEARCH_REGISTERED_PACKAGES
Searching from registered checkstyle modules and from packages given in constructor.
|
TRY_IN_ALL_REGISTERED_PACKAGES
As SEARCH_REGISTERED_PACKAGES and also try to load class from all of packages given in
constructor.
|
Modifier and Type | Method and Description |
---|---|
static PackageObjectFactory.ModuleLoadOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackageObjectFactory.ModuleLoadOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageObjectFactory.ModuleLoadOption SEARCH_REGISTERED_PACKAGES
public static final PackageObjectFactory.ModuleLoadOption TRY_IN_ALL_REGISTERED_PACKAGES
public static PackageObjectFactory.ModuleLoadOption[] values()
for (PackageObjectFactory.ModuleLoadOption c : PackageObjectFactory.ModuleLoadOption.values()) System.out.println(c);
public static PackageObjectFactory.ModuleLoadOption 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 © 2001–2018. All rights reserved.