Enum ImplStructureStrategy

    • Enum Constant Detail

      • BEAN_ONLY

        public static final ImplStructureStrategy BEAN_ONLY
        Generates beans only. The simplest code generation.
      • INTF_AND_IMPL

        public static final ImplStructureStrategy INTF_AND_IMPL
        Generates the interfaces to describe beans (content interfaces) and then the beans themselves in a hidden impl package. Similar to JAXB 1.0.
    • Method Detail

      • values

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

        public static ImplStructureStrategy 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
      • getPackage

        protected abstract JPackage getPackage​(JPackage pkg,
                                               Aspect a)
        Gets the specified aspect of the given package.