public enum SynchronizationType extends Enum<SynchronizationType>
| Enum Constant and Description |
|---|
APIS_ONLY
Only synchronize available APIs.
|
FULL
Synchronize everything.
|
NONE
Do not synchronize values with the connected Node.
|
PROPERTIES_ONLY
Only synchronize properties.
|
| Modifier and Type | Method and Description |
|---|---|
static SynchronizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronizationType FULL
public static final SynchronizationType APIS_ONLY
public static final SynchronizationType PROPERTIES_ONLY
public static final SynchronizationType NONE
public static SynchronizationType[] values()
for (SynchronizationType c : SynchronizationType.values()) System.out.println(c);
public static SynchronizationType 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 © 2019. All rights reserved.