public static enum Presentation.AccessScopeKind extends Enum<Presentation.AccessScopeKind>
| Enum Constant and Description |
|---|
GROUP
[optional] Scope spans to all instances belonging to
DataWriter (or DataReader) entities within the
same Publisher (or Subscriber). |
INSTANCE
Scope spans only a single instance.
|
TOPIC
Scope spans to all instances within the same
DataWriter
(or DataReader), but not across instances in different
DataWriter (or DataReader). |
| Modifier and Type | Method and Description |
|---|---|
static Presentation.AccessScopeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Presentation.AccessScopeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Presentation.AccessScopeKind INSTANCE
public static final Presentation.AccessScopeKind TOPIC
DataWriter
(or DataReader), but not across instances in different
DataWriter (or DataReader).public static final Presentation.AccessScopeKind GROUP
DataWriter (or DataReader) entities within the
same Publisher (or Subscriber).public static Presentation.AccessScopeKind[] values()
for (Presentation.AccessScopeKind c : Presentation.AccessScopeKind.values()) System.out.println(c);
public static Presentation.AccessScopeKind 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 © 2014. All rights reserved.