Enum PubSubNamespace
- java.lang.Object
-
- java.lang.Enum<PubSubNamespace>
-
- org.jivesoftware.smackx.pubsub.packet.PubSubNamespace
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PubSubNamespace>
public enum PubSubNamespace extends java.lang.Enum<PubSubNamespace>
Defines all the valid namespaces that are used with thePubSub
packet as defined by the specification.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFragment()
java.lang.String
getXmlns()
static PubSubNamespace
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PubSubNamespace
valueOfFromXmlns(java.lang.String ns)
static PubSubNamespace[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
basic
public static final PubSubNamespace basic
-
error
public static final PubSubNamespace error
-
event
public static final PubSubNamespace event
-
owner
public static final PubSubNamespace owner
-
-
Method Detail
-
values
public static PubSubNamespace[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PubSubNamespace c : PubSubNamespace.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PubSubNamespace valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getXmlns
public java.lang.String getXmlns()
-
getFragment
public java.lang.String getFragment()
-
valueOfFromXmlns
public static PubSubNamespace valueOfFromXmlns(java.lang.String ns)
-
-