public enum ModuleType extends java.lang.Enum<ModuleType>
| Enum Constant and Description |
|---|
CHECK
Module is a Checkstyle check.
|
FILEFILTER
Module is a Checkstyle file filter.
|
FILTER
Module is a Checkstyle filter.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getLabel()
Get label corresponding to a module type.
|
static ModuleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModuleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleType CHECK
public static final ModuleType FILTER
public static final ModuleType FILEFILTER
public static ModuleType[] values()
for (ModuleType c : ModuleType.values()) System.out.println(c);
public static ModuleType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getLabel()
Copyright © 2001-2020. All Rights Reserved.