Enum StandardFonts

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<StandardFonts>

    public enum StandardFonts
    extends java.lang.Enum<StandardFonts>
    • Field Detail

      • family

        private int family
      • style

        private int style
    • Constructor Detail

      • StandardFonts

        private StandardFonts​(int family,
                              int style)
    • Method Detail

      • values

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

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

        public Font create()
                    throws java.io.IOException
        Throws:
        java.io.IOException
      • create

        public Font create​(int size)
                    throws java.io.IOException
        Throws:
        java.io.IOException
      • isDeprecated

        public boolean isDeprecated()