Enum Class LocationType

java.lang.Object
java.lang.Enum<LocationType>
com.microsoft.graph.models.LocationType
All Implemented Interfaces:
Serializable, Comparable<LocationType>, Constable

public enum LocationType extends Enum<LocationType>
The Enum Location Type.
  • Enum Constant Details

    • DEFAULT

      public static final LocationType DEFAULT
      default
    • CONFERENCE_ROOM

      public static final LocationType CONFERENCE_ROOM
      conference Room
    • HOME_ADDRESS

      public static final LocationType HOME_ADDRESS
      home Address
    • BUSINESS_ADDRESS

      public static final LocationType BUSINESS_ADDRESS
      business Address
    • GEO_COORDINATES

      public static final LocationType GEO_COORDINATES
      geo Coordinates
    • STREET_ADDRESS

      public static final LocationType STREET_ADDRESS
      street Address
    • HOTEL

      public static final LocationType HOTEL
      hotel
    • RESTAURANT

      public static final LocationType RESTAURANT
      restaurant
    • LOCAL_BUSINESS

      public static final LocationType LOCAL_BUSINESS
      local Business
    • POSTAL_ADDRESS

      public static final LocationType POSTAL_ADDRESS
      postal Address
    • UNEXPECTED_VALUE

      public static final LocationType UNEXPECTED_VALUE
      For LocationType values that were not expected from the service
  • Method Details

    • values

      public static LocationType[] 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 LocationType 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