Enum Class PublishState

java.lang.Object
java.lang.Enum<PublishState>
org.linphone.core.PublishState
All Implemented Interfaces:
Serializable, Comparable<PublishState>, Constable

public enum PublishState extends Enum<PublishState>
Enum for publish states.

  • Enum Constant Details

    • None

      public static final PublishState None
      Initial state, do not use.

    • IncomingReceived

      public static final PublishState IncomingReceived
      An incoming publish is received.

    • Ok

      public static final PublishState Ok
      Publish is accepted.

    • Error

      public static final PublishState Error
      Publish encoutered an error, Event.getReason() gives reason code.

    • Expiring

      public static final PublishState Expiring
      Publish is about to expire, only sent if [sip]->refresh_generic_publish
      property is set to 0.

    • Cleared

      public static final PublishState Cleared
      Event has been un published.

    • Terminating

      public static final PublishState Terminating
      Publish is about to terminate.

    • OutgoingProgress

      public static final PublishState OutgoingProgress
      An outgoing publish was created and submitted.

  • Field Details

    • mValue

      protected final int mValue
  • Method Details

    • values

      public static PublishState[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PublishState valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromInt

      public static PublishState fromInt(int value) throws RuntimeException
      Throws:
      RuntimeException
    • fromIntArray

      protected static PublishState[] fromIntArray(int[] values) throws RuntimeException
      Throws:
      RuntimeException
    • toIntArray

      protected static int[] toIntArray(PublishState[] values) throws RuntimeException
      Throws:
      RuntimeException
    • toInt

      public int toInt()