de.starface.integration.uci.java.v30.values
Enum ConferenceCallProperties

java.lang.Object
  extended by java.lang.Enum<ConferenceCallProperties>
      extended by de.starface.integration.uci.java.v30.values.ConferenceCallProperties
All Implemented Interfaces:
Serializable, Comparable<ConferenceCallProperties>

public enum ConferenceCallProperties
extends Enum<ConferenceCallProperties>

This enum holds constants with the property names of the call as returned by UcpCallEvents.receiveCallState(java.util.Map).


Enum Constant Summary
admin
          Is the participant admin
avatarHash
          The avatar hash
duration
          The time between now and the enteredTimestamp in milliseconds
enteredTimestamp
          Entered Room
id
          The id of the call in form of a UUID as String
jabberId
          The jabber id
listening
          Can the participant hear
muted
          Can the participant speak
name
          The name of the conference participant
number
          The phone number of the conference participant
roomId
          The Room Identifikation Number
state
          The state of the call as String by name defined in CallState
talking
          Is the participant speaking
wantToSpeak
          Want the participant speak
 
Method Summary
 Class<?> getType()
           
static ConferenceCallProperties valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ConferenceCallProperties[] 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

id

public static final ConferenceCallProperties id
The id of the call in form of a UUID as String


number

public static final ConferenceCallProperties number
The phone number of the conference participant


name

public static final ConferenceCallProperties name
The name of the conference participant


listening

public static final ConferenceCallProperties listening
Can the participant hear


muted

public static final ConferenceCallProperties muted
Can the participant speak


talking

public static final ConferenceCallProperties talking
Is the participant speaking


wantToSpeak

public static final ConferenceCallProperties wantToSpeak
Want the participant speak


admin

public static final ConferenceCallProperties admin
Is the participant admin


state

public static final ConferenceCallProperties state
The state of the call as String by name defined in CallState


roomId

public static final ConferenceCallProperties roomId
The Room Identifikation Number


enteredTimestamp

public static final ConferenceCallProperties enteredTimestamp
Entered Room


duration

public static final ConferenceCallProperties duration
The time between now and the enteredTimestamp in milliseconds


jabberId

public static final ConferenceCallProperties jabberId
The jabber id


avatarHash

public static final ConferenceCallProperties avatarHash
The avatar hash

Method Detail

values

public static ConferenceCallProperties[] 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 (ConferenceCallProperties c : ConferenceCallProperties.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ConferenceCallProperties valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getType

public Class<?> getType()
Returns:
the java type of the property


Copyright © 2012 STARFACE GmbH. All rights reserved.