Package org.jboss.classfilewriter
Class AccessFlag
- java.lang.Object
-
- org.jboss.classfilewriter.AccessFlag
-
public class AccessFlag extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
ABSTRACT
static int
ANNOTATION
static int
BRIDGE
static int
ENUM
static int
FINAL
static int
INTERFACE
static int
NATIVE
static int
PRIVATE
static int
PROTECTED
static int
PUBLIC
static int
STATIC
static int
STRICT
static int
SUPER
static int
SYNCHRONIZED
static int
SYNTHETIC
static int
TRANSIENT
static int
VARARGS
static int
VOLATILE
-
Constructor Summary
Constructors Modifier Constructor Description private
AccessFlag()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
of(int... modifiers)
-
-
-
Field Detail
-
PUBLIC
public static final int PUBLIC
- See Also:
- Constant Field Values
-
PRIVATE
public static final int PRIVATE
- See Also:
- Constant Field Values
-
PROTECTED
public static final int PROTECTED
- See Also:
- Constant Field Values
-
STATIC
public static final int STATIC
- See Also:
- Constant Field Values
-
FINAL
public static final int FINAL
- See Also:
- Constant Field Values
-
SYNCHRONIZED
public static final int SYNCHRONIZED
- See Also:
- Constant Field Values
-
VOLATILE
public static final int VOLATILE
- See Also:
- Constant Field Values
-
BRIDGE
public static final int BRIDGE
- See Also:
- Constant Field Values
-
TRANSIENT
public static final int TRANSIENT
- See Also:
- Constant Field Values
-
VARARGS
public static final int VARARGS
- See Also:
- Constant Field Values
-
NATIVE
public static final int NATIVE
- See Also:
- Constant Field Values
-
INTERFACE
public static final int INTERFACE
- See Also:
- Constant Field Values
-
ABSTRACT
public static final int ABSTRACT
- See Also:
- Constant Field Values
-
STRICT
public static final int STRICT
- See Also:
- Constant Field Values
-
SYNTHETIC
public static final int SYNTHETIC
- See Also:
- Constant Field Values
-
ANNOTATION
public static final int ANNOTATION
- See Also:
- Constant Field Values
-
ENUM
public static final int ENUM
- See Also:
- Constant Field Values
-
SUPER
public static final int SUPER
- See Also:
- Constant Field Values
-
-