private static enum ModuleAttr.Content extends java.lang.Enum<ModuleAttr.Content> implements Data
| Enum Constant and Description |
|---|
instance |
| Modifier and Type | Field and Description |
|---|---|
(package private) ModuleAttr.MapStruct<Module.Exported> |
exportsMapStruct |
(package private) ModuleAttr.HeaderStruct |
header |
(package private) ModuleAttr.MapStruct<Module.Opened> |
opensMapStruct |
(package private) ModuleAttr.MapStruct<Module.Provided> |
providesMapStruct |
(package private) ModuleAttr.SetStruct<Module.Dependence> |
requiresStruct |
(package private) ModuleAttr.SetStruct<Module.Uses> |
usesStruct |
| Modifier and Type | Method and Description |
|---|---|
static ModuleAttr.Content |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModuleAttr.Content[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleAttr.Content instance
ModuleAttr.HeaderStruct header
ModuleAttr.SetStruct<Module.Dependence> requiresStruct
ModuleAttr.MapStruct<Module.Exported> exportsMapStruct
ModuleAttr.MapStruct<Module.Opened> opensMapStruct
ModuleAttr.SetStruct<Module.Uses> usesStruct
ModuleAttr.MapStruct<Module.Provided> providesMapStruct
public static ModuleAttr.Content[] values()
for (ModuleAttr.Content c : ModuleAttr.Content.values()) System.out.println(c);
public static ModuleAttr.Content 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 null