Enum JingleContent.Senders
- java.lang.Object
-
- java.lang.Enum<JingleContent.Senders>
-
- org.jivesoftware.smackx.jingle.element.JingleContent.Senders
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JingleContent.Senders>
- Enclosing class:
- JingleContent
public static enum JingleContent.Senders extends java.lang.Enum<JingleContent.Senders>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JingleContent.Senders
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JingleContent.Senders[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
both
public static final JingleContent.Senders both
-
initiator
public static final JingleContent.Senders initiator
-
none
public static final JingleContent.Senders none
-
responder
public static final JingleContent.Senders responder
-
-
Method Detail
-
values
public static JingleContent.Senders[] 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 (JingleContent.Senders c : JingleContent.Senders.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JingleContent.Senders 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
-
-