public static enum Access.AccessType extends Enum<Access.AccessType>
Enum Constant and Description |
---|
NONE |
PACKAGE |
PRIVATE |
PROTECTED |
PUBLIC |
Modifier and Type | Method and Description |
---|---|
static CodeWriter |
toCode(Access.AccessType accesstype,
CodeWriter out) |
CodeWriter |
toCode(CodeWriter out) |
static Access.AccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Access.AccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Access.AccessType NONE
public static final Access.AccessType PUBLIC
public static final Access.AccessType PACKAGE
public static final Access.AccessType PROTECTED
public static final Access.AccessType PRIVATE
public static Access.AccessType[] values()
for (Access.AccessType c : Access.AccessType.values()) System.out.println(c);
public static Access.AccessType 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 CodeWriter toCode(Access.AccessType accesstype, CodeWriter out)
public CodeWriter toCode(CodeWriter out)
Copyright © 2000–2018 jenesis4java. All rights reserved.