Enum SeekGroup

    • Enum Constant Detail

      • HORIZON

        public static final SeekGroup HORIZON
      • CRITICAL

        public static final SeekGroup CRITICAL
      • OVERLOOK

        public static final SeekGroup OVERLOOK
      • PARENT_HORIZON

        public static final SeekGroup PARENT_HORIZON
      • PARENT_CRITICAL

        public static final SeekGroup PARENT_CRITICAL
      • PARENT_OVERLOOK

        public static final SeekGroup PARENT_OVERLOOK
      • CHILD_HORIZON

        public static final SeekGroup CHILD_HORIZON
      • CHILD_CRITICAL

        public static final SeekGroup CHILD_CRITICAL
      • CHILD_OVERLOOK

        public static final SeekGroup CHILD_OVERLOOK
      • INHERIT_HORIZON

        public static final SeekGroup INHERIT_HORIZON
      • INHERIT_CRITICAL

        public static final SeekGroup INHERIT_CRITICAL
      • INHERIT_OVERLOOK

        public static final SeekGroup INHERIT_OVERLOOK
      • EXTEND_HORIZON

        public static final SeekGroup EXTEND_HORIZON
      • EXTEND_CRITICAL

        public static final SeekGroup EXTEND_CRITICAL
      • EXTEND_OVERLOOK

        public static final SeekGroup EXTEND_OVERLOOK
    • Method Detail

      • values

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

        public static SeekGroup valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null