public enum SrcModifier extends java.lang.Enum<SrcModifier>
| Enum Constant and Description |
|---|
ABSTRACT |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toCodeString() |
static SrcModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SrcModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SrcModifier PUBLIC
public static final SrcModifier PROTECTED
public static final SrcModifier PRIVATE
public static final SrcModifier STATIC
public static final SrcModifier ABSTRACT
public static SrcModifier[] values()
for (SrcModifier c : SrcModifier.values()) System.out.println(c);
public static SrcModifier 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 nullpublic java.lang.String toCodeString()
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.