Enum Feature

    • Enum Constant Summary

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

      Fields 
      Modifier and Type Field Description
      int id  
    • Constructor Summary

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

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Feature valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Feature[] 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

      • 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).
      • 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 & GraphQL support
      • SYNC_SERVER

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

      • id

        public final int id
    • Constructor Detail

      • Feature

        private Feature​(int id)
    • Method Detail

      • values

        public static Feature[] 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 (Feature c : Feature.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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