public static enum CallImpl.OWNER extends Enum<CallImpl.OWNER>
Enum Constant and Description |
---|
SELF |
Modifier and Type | Method and Description |
---|---|
static CallImpl.OWNER |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallImpl.OWNER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallImpl.OWNER SELF
public static CallImpl.OWNER[] values()
for (CallImpl.OWNER c : CallImpl.OWNER.values()) System.out.println(c);
public static CallImpl.OWNER 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 nullCopyright © 2004–2022. All rights reserved.