Enum SelectionPropagation

    • Enum Constant Detail

      • NORMAL

        public static final SelectionPropagation NORMAL
        Выборка поля полностью определяется значениями SelectionEnum. Это дефолтное поведение.
      • ALL

        public static final SelectionPropagation ALL
        Выборка всех полей (то есть игнорирование значений SelectionEnum) на этом (и только на этом) уровне вложенности.
      • NESTED

        public static final SelectionPropagation NESTED
        Полное игнорирование всех SelectionEnum на этом уровне, а так же на любом вложенном уровне. То есть будет выбрано каждое поле.
    • Method Detail

      • values

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

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