public enum DocumentationType extends Enum<DocumentationType>
| Enum Constant and Description |
|---|
appendix |
appInfo |
definition |
designComments |
documentation |
openIssues |
other |
rationale |
references |
requirements |
usageNotes |
walkthrough |
| Modifier and Type | Method and Description |
|---|---|
static DocumentationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentationType definition
public static final DocumentationType documentation
public static final DocumentationType appInfo
public static final DocumentationType requirements
public static final DocumentationType designComments
public static final DocumentationType appendix
public static final DocumentationType references
public static final DocumentationType rationale
public static final DocumentationType openIssues
public static final DocumentationType usageNotes
public static final DocumentationType other
public static final DocumentationType walkthrough
public static DocumentationType[] values()
for (DocumentationType c : DocumentationType.values()) System.out.println(c);
public static DocumentationType 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 © 2015. All rights reserved.