Package io.github.cdklabs.projen.vscode
Enum InternalConsoleOptions
- java.lang.Object
-
- java.lang.Enum<InternalConsoleOptions>
-
- io.github.cdklabs.projen.vscode.InternalConsoleOptions
-
- All Implemented Interfaces:
Serializable,Comparable<InternalConsoleOptions>
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.321Z") @Stability(Experimental) public enum InternalConsoleOptions extends Enum<InternalConsoleOptions>
(experimental) Controls the visibility of the VSCode Debug Console panel during a debugging session Source: https://code.visualstudio.com/docs/editor/debugging#_launchjson-attributes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEVER_OPENOPEN_ON_FIRST_SESSION_STARTOPEN_ON_SESSION_START
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InternalConsoleOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static InternalConsoleOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEVER_OPEN
@Stability(Experimental) public static final InternalConsoleOptions NEVER_OPEN
-
OPEN_ON_FIRST_SESSION_START
@Stability(Experimental) public static final InternalConsoleOptions OPEN_ON_FIRST_SESSION_START
-
OPEN_ON_SESSION_START
@Stability(Experimental) public static final InternalConsoleOptions OPEN_ON_SESSION_START
-
-
Method Detail
-
values
public static InternalConsoleOptions[] 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 (InternalConsoleOptions c : InternalConsoleOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InternalConsoleOptions 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
-
-