public enum TransferDirectionValues extends java.lang.Enum<TransferDirectionValues>
List of transfer directions for Logical View.
Enum Constant and Description |
---|
_C
Client to Server.
|
_S
Server to ClientBusiness Component to client: From the Segment to the Logical View for a selection service.
|
NONE
Both DirectionsDefault value for an update service or a selection service.
|
Modifier and Type | Method and Description |
---|---|
static TransferDirectionValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransferDirectionValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferDirectionValues _C
Client to Server.
Client to Business Component: From the Logical View to the Segment for an update service.
public static final TransferDirectionValues _S
Server to Client
Business Component to client: From the Segment to the Logical View for a selection service.
public static final TransferDirectionValues NONE
Both Directions
Default value for an update service or a selection service. It is the required value for graphic applications.
public static TransferDirectionValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static TransferDirectionValues[] values()
for (TransferDirectionValues c : TransferDirectionValues.values()) System.out.println(c);