public enum Source extends Enum<Source>
| Enum Constant and Description |
|---|
_UNKNOWN |
ADMIN_CONSOLE |
API |
BULK_OPERATION |
EXTERNAL_SERVICE |
HOSTED_PAGE |
JS_API |
MIGRATION |
NONE |
PORTAL |
SCHEDULED_JOB |
SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Source ADMIN_CONSOLE
public static final Source API
public static final Source SCHEDULED_JOB
public static final Source HOSTED_PAGE
public static final Source PORTAL
public static final Source SYSTEM
public static final Source NONE
public static final Source JS_API
public static final Source MIGRATION
public static final Source BULK_OPERATION
public static final Source EXTERNAL_SERVICE
public static final Source _UNKNOWN
public static Source[] values()
for (Source c : Source.values()) System.out.println(c);
public static Source 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 © 2023 ChargeBee. All rights reserved.