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