public enum SystemModifier extends Enum<SystemModifier> implements Modifier
Enum Constant and Description |
---|
ABSTRACT |
FINAL |
NATIVE |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
SYNCHRONIZED |
TRANSIENT |
VOLATILE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static SystemModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemModifier STATIC
public static final SystemModifier ABSTRACT
public static final SystemModifier FINAL
public static final SystemModifier SYNCHRONIZED
public static final SystemModifier VOLATILE
public static final SystemModifier TRANSIENT
public static final SystemModifier NATIVE
public static final SystemModifier PUBLIC
public static final SystemModifier PROTECTED
public static final SystemModifier PRIVATE
public static SystemModifier[] values()
for (SystemModifier c : SystemModifier.values()) System.out.println(c);
public static SystemModifier 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 toString()
toString
in class Enum<SystemModifier>
Copyright © 2013–2016 jparsec. All rights reserved.