Enum VersionChecker.Status

    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) boolean animated  
      (package private) boolean draw  
      (package private) int sheetOffset  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Status()  
      private Status​(int sheetOffset)  
      private Status​(int sheetOffset, boolean animated)  
      private Status​(int sheetOffset, boolean draw, boolean animated)  
    • Field Detail

      • sheetOffset

        final int sheetOffset
      • draw

        final boolean draw
      • animated

        final boolean animated
    • Constructor Detail

      • Status

        private Status()
      • Status

        private Status​(int sheetOffset)
      • Status

        private Status​(int sheetOffset,
                       boolean animated)
      • Status

        private Status​(int sheetOffset,
                       boolean draw,
                       boolean animated)
    • Method Detail

      • values

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

        public static VersionChecker.Status 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
      • getSheetOffset

        public int getSheetOffset()
      • shouldDraw

        public boolean shouldDraw()
      • isAnimated

        public boolean isAnimated()