Enum GlobalCfgDefn.SingleStructuralObjectclassBehavior

    • Enum Constant Detail

      • ACCEPT

        public static final GlobalCfgDefn.SingleStructuralObjectclassBehavior ACCEPT
        The directory server silently accepts entries that do not contain exactly one structural object class. Certain schema features that depend on the entry's structural class may not behave as expected.
      • WARN

        public static final GlobalCfgDefn.SingleStructuralObjectclassBehavior WARN
        The directory server accepts entries that do not contain exactly one structural object class, but also logs a warning message to the error log. Certain schema features that depend on the entry's structural class may not behave as expected.
    • Method Detail

      • values

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

        public static GlobalCfgDefn.SingleStructuralObjectclassBehavior 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