public enum JavadocContentLocationOption extends Enum<JavadocContentLocationOption>
| Enum Constant and Description |
|---|
FIRST_LINE
Represents a policy for the location of content starting from
the same line as
/**. |
SECOND_LINE
Represents a policy for the location of content starting from
the next line after
/**. |
| Modifier and Type | Method and Description |
|---|---|
static JavadocContentLocationOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavadocContentLocationOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavadocContentLocationOption FIRST_LINE
/**.
Example:
/** Summary text. * More details. */ public void method();This style is also known as "scala" style.
public static final JavadocContentLocationOption SECOND_LINE
/**.
Example:
/** * Summary text. * More details. */ public void method();This style is common to java projects.
public static JavadocContentLocationOption[] values()
for (JavadocContentLocationOption c : JavadocContentLocationOption.values()) System.out.println(c);
public static JavadocContentLocationOption 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–2020. All rights reserved.