java.io.Serializable, java.lang.Comparable<ASTModuleDirective.DirectiveType>public static enum ASTModuleDirective.DirectiveType extends java.lang.Enum<ASTModuleDirective.DirectiveType>
| Modifier and Type | Method | Description |
|---|---|---|
static ASTModuleDirective.DirectiveType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ASTModuleDirective.DirectiveType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTModuleDirective.DirectiveType REQUIRES
public static final ASTModuleDirective.DirectiveType EXPORTS
public static final ASTModuleDirective.DirectiveType OPENS
public static final ASTModuleDirective.DirectiveType USES
public static final ASTModuleDirective.DirectiveType PROVIDES
public static ASTModuleDirective.DirectiveType[] values()
for (ASTModuleDirective.DirectiveType c : ASTModuleDirective.DirectiveType.values()) System.out.println(c);
public static ASTModuleDirective.DirectiveType 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 nullCopyright © 2002–2018 PMD. All rights reserved.