public static enum SyncFilter.SourceItemTransform extends Enum<SyncFilter.SourceItemTransform>
Enum Constant and Description |
---|
CHILD_TO_PARENT
Source items are transformed to parent items.
|
NONE
No transformation of source items is done.
|
PARENT_TO_CHILD
Source items are transformed to child items.
|
Modifier and Type | Method and Description |
---|---|
static SyncFilter.SourceItemTransform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyncFilter.SourceItemTransform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncFilter.SourceItemTransform NONE
public static final SyncFilter.SourceItemTransform PARENT_TO_CHILD
public static final SyncFilter.SourceItemTransform CHILD_TO_PARENT
public static SyncFilter.SourceItemTransform[] values()
for (SyncFilter.SourceItemTransform c : SyncFilter.SourceItemTransform.values()) System.out.println(c);
public static SyncFilter.SourceItemTransform 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 null