Enum Class ParticipantDevice.State

java.lang.Object
java.lang.Enum<ParticipantDevice.State>
org.linphone.core.ParticipantDevice.State
All Implemented Interfaces:
Serializable, Comparable<ParticipantDevice.State>, Constable
Enclosing interface:
ParticipantDevice

public static enum ParticipantDevice.State extends Enum<ParticipantDevice.State>
  • Enum Constant Details

    • Joining

      public static final ParticipantDevice.State Joining
      an INVITE has been sent

    • Present

      public static final ParticipantDevice.State Present
      the SIP session has been concluded, participant is part of the conference

    • Leaving

      public static final ParticipantDevice.State Leaving
      A BYE is pending.

    • Left

      public static final ParticipantDevice.State Left
      The Session is terminated.

    • ScheduledForJoining

      public static final ParticipantDevice.State ScheduledForJoining
      Initial state for the server group chatroom, when the participant has not yet
      been INVITEd.

    • ScheduledForLeaving

      public static final ParticipantDevice.State ScheduledForLeaving
      Transitional state for a participant that will receive a BYE shortly.

    • OnHold

      public static final ParticipantDevice.State OnHold
      the SIP session has been concluded, participant is not media mixed

    • Alerting

      public static final ParticipantDevice.State Alerting
      180 Ringing

    • MutedByFocus

      public static final ParticipantDevice.State MutedByFocus
      Some medias have been muted by the focus.

  • Field Details

    • mValue

      protected final int mValue
  • Method Details

    • values

      public static ParticipantDevice.State[] 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 ParticipantDevice.State 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 ParticipantDevice.State fromInt(int value) throws RuntimeException
      Throws:
      RuntimeException
    • toInt

      public int toInt()