public enum BinaryResolutionMethod extends Enum<BinaryResolutionMethod>
| Enum Constant and Description |
|---|
download
The binary will be downloaded at plugin execution time.
|
embedded
Use the embedded binary.
|
external
The path to an externally provided shellcheck binary must be provided.
|
| Modifier and Type | Method and Description |
|---|---|
static BinaryResolutionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryResolutionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryResolutionMethod external
public static final BinaryResolutionMethod download
public static final BinaryResolutionMethod embedded
public static BinaryResolutionMethod[] values()
for (BinaryResolutionMethod c : BinaryResolutionMethod.values()) System.out.println(c);
public static BinaryResolutionMethod 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 © 2020–2023 Marco Nicolini. All rights reserved.