Enum IntervalUnit

    • Enum Constant Detail

      • minute

        public static final IntervalUnit minute
        Execute every X mintues.
      • hour

        public static final IntervalUnit hour
        Execute every X hours.
      • day

        public static final IntervalUnit day
        Execute every X days.
      • week

        public static final IntervalUnit week
        Execute every X weeks.
      • month

        public static final IntervalUnit month
        Execute every X months.
    • Method Detail

      • values

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

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