Enum HemfPlusRegion.EmfPlusRegionNodeDataType

    • Enum Constant Detail

      • AND

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType AND
        Specifies a region node with child nodes. A Boolean AND operation SHOULD be applied to the left and right child nodes specified by an EmfPlusRegionNodeChildNodes object
      • OR

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType OR
        Specifies a region node with child nodes. A Boolean OR operation SHOULD be applied to the left and right child nodes specified by an EmfPlusRegionNodeChildNodes object.
      • XOR

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType XOR
        Specifies a region node with child nodes. A Boolean XOR operation SHOULD be applied to the left and right child nodes specified by an EmfPlusRegionNodeChildNodes object.
      • EXCLUDE

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType EXCLUDE
        Specifies a region node with child nodes. A Boolean operation, defined as "the part of region 1 that is excluded from region 2", SHOULD be applied to the left and right child nodes specified by an EmfPlusRegionNodeChildNodes object.
      • COMPLEMENT

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType COMPLEMENT
        Specifies a region node with child nodes. A Boolean operation, defined as "the part of region 2 that is excluded from region 1", SHOULD be applied to the left and right child nodes specified by an EmfPlusRegionNodeChildNodes object.
      • PATH

        public static final HemfPlusRegion.EmfPlusRegionNodeDataType PATH
        Specifies a region node with no child nodes. The RegionNodeData field SHOULD specify a boundary with an EmfPlusRegionNodePath object
    • Method Detail

      • values

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

        public static HemfPlusRegion.EmfPlusRegionNodeDataType 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
      • valueOf

        public static HemfPlusRegion.EmfPlusRegionNodeDataType valueOf​(int id)
        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:
        id - 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