Enum Class Feature

java.lang.Object
java.lang.Enum<Feature>
io.objectbox.internal.Feature
All Implemented Interfaces:
Serializable, Comparable<Feature>, Constable

public enum Feature extends Enum<Feature>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    HTTP server with a database browser.
    Check whether debug log can be enabled during runtime.
    Internal feature, not relevant if using ObjectBox through JNI.
    Sync client availability.
    Embedded Sync server availability.
    TimeSeries support (date/date-nano companion ID and other time-series functionality).
    Trees invalid input: '&' GraphQL support
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
     
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    Feature(int id)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static Feature
    Returns the enum constant of this class with the specified name.
    static Feature[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • RESULT_ARRAY

      public static final Feature RESULT_ARRAY
      Internal feature, not relevant if using ObjectBox through JNI.
    • TIME_SERIES

      public static final Feature TIME_SERIES
      TimeSeries support (date/date-nano companion ID and other time-series functionality).
    • SYNC

      public static final Feature SYNC
      Sync client availability. Visit the ObjectBox Sync website for more details.
    • DEBUG_LOG

      public static final Feature DEBUG_LOG
      Check whether debug log can be enabled during runtime.
    • ADMIN

      public static final Feature ADMIN
      HTTP server with a database browser.
    • TREES

      public static final Feature TREES
      Trees invalid input: '&' GraphQL support
    • SYNC_SERVER

      public static final Feature SYNC_SERVER
      Embedded Sync server availability.
  • Field Details

    • id

      public final int id
  • Constructor Details

    • Feature

      private Feature(int id)
  • Method Details

    • values

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