public static enum RequestFactoryJarExtractor.Mode extends java.lang.Enum<RequestFactoryJarExtractor.Mode>
Modifier and Type | Method and Description |
---|---|
boolean |
isEmitClasses() |
boolean |
isEmitSource() |
static RequestFactoryJarExtractor.Mode |
match(java.lang.String target) |
protected abstract boolean |
matches(java.lang.String target) |
static RequestFactoryJarExtractor.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestFactoryJarExtractor.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestFactoryJarExtractor.Mode BOTH
public static final RequestFactoryJarExtractor.Mode SOURCE
public static final RequestFactoryJarExtractor.Mode CLASSES
public static RequestFactoryJarExtractor.Mode[] values()
for (RequestFactoryJarExtractor.Mode c : RequestFactoryJarExtractor.Mode.values()) System.out.println(c);
public static RequestFactoryJarExtractor.Mode 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 static RequestFactoryJarExtractor.Mode match(java.lang.String target)
public boolean isEmitClasses()
public boolean isEmitSource()
protected abstract boolean matches(java.lang.String target)