@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-20T00:39:28.830Z") @Stability(value=Experimental) public enum AutoRelease extends Enum<AutoRelease>
| Enum Constant and Description |
|---|
DAILY
(experimental) Automatically bump & release a new version on a daily basis.
|
EVERY_COMMIT
(experimental) Automatically bump & release a new version for every commit to "main".
|
| Modifier and Type | Method and Description |
|---|---|
static AutoRelease |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoRelease[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final AutoRelease EVERY_COMMIT
@Stability(value=Experimental) public static final AutoRelease DAILY
public static AutoRelease[] values()
for (AutoRelease c : AutoRelease.values()) System.out.println(c);
public static AutoRelease valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.