Enum BazelRunnerFlag
- java.lang.Object
-
- java.lang.Enum<BazelRunnerFlag>
-
- org.jetbrains.bsp.bazel.bazelrunner.params.BazelRunnerFlag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BazelRunnerFlag>
public enum BazelRunnerFlag extends java.lang.Enum<BazelRunnerFlag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASPECTSKEEP_GOINGNOBUILDNOHOST_DEPSNOIMPLICIT_DEPSOUTPUT_PROTO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static BazelRunnerFlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BazelRunnerFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTPUT_PROTO
public static final BazelRunnerFlag OUTPUT_PROTO
-
ASPECTS
public static final BazelRunnerFlag ASPECTS
-
NOHOST_DEPS
public static final BazelRunnerFlag NOHOST_DEPS
-
NOIMPLICIT_DEPS
public static final BazelRunnerFlag NOIMPLICIT_DEPS
-
KEEP_GOING
public static final BazelRunnerFlag KEEP_GOING
-
NOBUILD
public static final BazelRunnerFlag NOBUILD
-
-
Method Detail
-
values
public static BazelRunnerFlag[] 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 (BazelRunnerFlag c : BazelRunnerFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BazelRunnerFlag 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<BazelRunnerFlag>
-
-