public enum AccessFlag extends Enum<AccessFlag>
| Enum Constant and Description |
|---|
ABSTRACT |
ANNOTATION |
ENUM |
FINAL |
INTERFACE |
PUBLIC |
SUPER |
SYNTHETIC |
| Modifier and Type | Method and Description |
|---|---|
static List<AccessFlag> |
getAccessFlag(short value) |
static AccessFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessFlag PUBLIC
public static final AccessFlag FINAL
public static final AccessFlag SUPER
public static final AccessFlag INTERFACE
public static final AccessFlag ABSTRACT
public static final AccessFlag SYNTHETIC
public static final AccessFlag ANNOTATION
public static final AccessFlag ENUM
public static AccessFlag[] values()
for (AccessFlag c : AccessFlag.values()) System.out.println(c);
public static AccessFlag 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 nullpublic static List<AccessFlag> getAccessFlag(short value)
Copyright © 2019. All rights reserved.