Package io.github.cdklabs.projen
Enum RenovatebotScheduleInterval
- java.lang.Object
-
- java.lang.Enum<RenovatebotScheduleInterval>
-
- io.github.cdklabs.projen.RenovatebotScheduleInterval
-
- All Implemented Interfaces:
Serializable,Comparable<RenovatebotScheduleInterval>
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:42.799Z") @Stability(Experimental) public enum RenovatebotScheduleInterval extends Enum<RenovatebotScheduleInterval>
(experimental) How often to check for new versions and raise pull requests for version updates.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY_TIME(experimental) Run at any time.DAILY(experimental) Schedule daily.EARLY_MONDAYS(experimental) Weekly schedule on early monday mornings.MONTHLY(experimental) Schedule monthly.QUARTERLY(experimental) Schedule quarterly.WEEKDAYS(experimental) Schedule for weekdays.WEEKENDS(experimental) Schedule for weekends.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenovatebotScheduleIntervalvalueOf(String name)Returns the enum constant of this type with the specified name.static RenovatebotScheduleInterval[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY_TIME
@Stability(Experimental) public static final RenovatebotScheduleInterval ANY_TIME
(experimental) Run at any time.
-
EARLY_MONDAYS
@Stability(Experimental) public static final RenovatebotScheduleInterval EARLY_MONDAYS
(experimental) Weekly schedule on early monday mornings.
-
DAILY
@Stability(Experimental) public static final RenovatebotScheduleInterval DAILY
(experimental) Schedule daily.
-
MONTHLY
@Stability(Experimental) public static final RenovatebotScheduleInterval MONTHLY
(experimental) Schedule monthly.
-
QUARTERLY
@Stability(Experimental) public static final RenovatebotScheduleInterval QUARTERLY
(experimental) Schedule quarterly.
-
WEEKENDS
@Stability(Experimental) public static final RenovatebotScheduleInterval WEEKENDS
(experimental) Schedule for weekends.
-
WEEKDAYS
@Stability(Experimental) public static final RenovatebotScheduleInterval WEEKDAYS
(experimental) Schedule for weekdays.
-
-
Method Detail
-
values
public static RenovatebotScheduleInterval[] 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 (RenovatebotScheduleInterval c : RenovatebotScheduleInterval.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenovatebotScheduleInterval 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 nameNullPointerException- if the argument is null
-
-