Enum Class PropertyType

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

public enum PropertyType extends Enum<PropertyType>
The Enum Property Type.
  • Enum Constant Details

    • STRING

      public static final PropertyType STRING
      string
    • INT64

      public static final PropertyType INT64
      int64
    • DOUBLE

      public static final PropertyType DOUBLE
      double
    • DATE_TIME

      public static final PropertyType DATE_TIME
      date Time
    • BOOLEAN

      public static final PropertyType BOOLEAN
      boolean
    • STRING_COLLECTION

      public static final PropertyType STRING_COLLECTION
      string Collection
    • INT64_COLLECTION

      public static final PropertyType INT64_COLLECTION
      int64Collection
    • DOUBLE_COLLECTION

      public static final PropertyType DOUBLE_COLLECTION
      double Collection
    • DATE_TIME_COLLECTION

      public static final PropertyType DATE_TIME_COLLECTION
      date Time Collection
    • UNKNOWN_FUTURE_VALUE

      public static final PropertyType UNKNOWN_FUTURE_VALUE
      unknown Future Value
    • UNEXPECTED_VALUE

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

    • values

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