public enum SrcModifier extends Enum<SrcModifier>
Enum Constant and Description |
---|
ABSTRACT |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
Modifier and Type | Method and Description |
---|---|
String |
toCodeString() |
static SrcModifier |
valueOf(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(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 String toCodeString()
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.