public static enum JavacHandlerUtil.CopyJavadoc extends Enum<JavacHandlerUtil.CopyJavadoc>
Modifier and Type | Method and Description |
---|---|
String[] |
split(String javadoc)
Splits the javadoc into the section to be copied (ret[0]) and the section to replace the original with (ret[1])
|
static JavacHandlerUtil.CopyJavadoc |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavacHandlerUtil.CopyJavadoc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavacHandlerUtil.CopyJavadoc VERBATIM
public static final JavacHandlerUtil.CopyJavadoc GETTER
public static final JavacHandlerUtil.CopyJavadoc SETTER
public static final JavacHandlerUtil.CopyJavadoc WITHER
public static JavacHandlerUtil.CopyJavadoc[] values()
for (JavacHandlerUtil.CopyJavadoc c : JavacHandlerUtil.CopyJavadoc.values()) System.out.println(c);
public static JavacHandlerUtil.CopyJavadoc 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 © 2009-2015 The Project Lombok Authors, licensed under the MIT licence.