static enum ClassGraph.Font extends java.lang.Enum<ClassGraph.Font>
Enum Constant and Description |
---|
ABSTRACT |
CLASS |
CLASS_ABSTRACT |
NORMAL |
PACKAGE |
TAG |
Modifier and Type | Method and Description |
---|---|
static ClassGraph.Font |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassGraph.Font[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassGraph.Font NORMAL
public static final ClassGraph.Font ABSTRACT
public static final ClassGraph.Font CLASS
public static final ClassGraph.Font CLASS_ABSTRACT
public static final ClassGraph.Font TAG
public static final ClassGraph.Font PACKAGE
public static ClassGraph.Font[] values()
for (ClassGraph.Font c : ClassGraph.Font.values()) System.out.println(c);
public static ClassGraph.Font 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 null