|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Queue.Access>
ionic.Msmq.Queue.Access
public static enum Queue.Access
The Queue.Access enum provides options for access to the MSMQ Queue: Either Receive, Send, or both. Specify this when opening a queue.
Applications may wish to open queues for only the access they need, in order to save resources and memory.
Enum Constant Summary | |
---|---|
RECEIVE
The queue will be accessible for Receive or READ (or GET) operations. |
|
SEND
The queue will be accessible for Send or WRITE (or PUT) operations. |
|
SEND_AND_RECEIVE
The queue will be accessible for both Send ad Receive operations. |
Method Summary | |
---|---|
static Queue.Access |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Queue.Access[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Queue.Access RECEIVE
public static final Queue.Access SEND
public static final Queue.Access SEND_AND_RECEIVE
Method Detail |
---|
public static Queue.Access[] values()
for (Queue.Access c : Queue.Access.values()) System.out.println(c);
public static Queue.Access 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |