com.bloomberglp.blpapi
Enum Identity.SeatType

java.lang.Object
  extended by java.lang.Enum<Identity.SeatType>
      extended by com.bloomberglp.blpapi.Identity.SeatType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Identity.SeatType>
Enclosing interface:
Identity

public static enum Identity.SeatType
extends java.lang.Enum<Identity.SeatType>

Seat type enumeration defines seat type values such as whether this identity is a Bloomberg Professional Service user.


Enum Constant Summary
BPS
          Bloomberg Professional Service
INVALID_SEAT
          Invalid seat type
NONBPS
          None Bloomberg Professional Service
 
Method Summary
static Identity.SeatType fromInt(int value)
           
 int intValue()
           
static Identity.SeatType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Identity.SeatType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INVALID_SEAT

public static final Identity.SeatType INVALID_SEAT
Invalid seat type


BPS

public static final Identity.SeatType BPS
Bloomberg Professional Service


NONBPS

public static final Identity.SeatType NONBPS
None Bloomberg Professional Service

Method Detail

values

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

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

valueOf

public static Identity.SeatType 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 name
java.lang.NullPointerException - if the argument is null

intValue

public int intValue()

fromInt

public static Identity.SeatType fromInt(int value)


Copyright © 2015 Bloomberg L.P.. All Rights Reserved.