public static enum GoSourceCodeFilter.SourceSetType extends java.lang.Enum<GoSourceCodeFilter.SourceSetType>
| Enum Constant and Description |
|---|
PROJECT_AND_VENDOR_BUILD_FILES
All non-test go files in project directory as well as all non-test go files in vendor directory
|
PROJECT_BUILD_FILES_ONLY
All non-test go files in project directory, not including any files in vendor directory
|
PROJECT_TEST_AND_VENDOR_BUILD_FILES
All *.go files in project directory as well as all non-test go files in vendor directory
|
PROJECT_TEST_FILES_ONLY
All *_test.go files in project directory, not including any files in vendor directory
|
| Modifier and Type | Method and Description |
|---|---|
static GoSourceCodeFilter.SourceSetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoSourceCodeFilter.SourceSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoSourceCodeFilter.SourceSetType PROJECT_BUILD_FILES_ONLY
public static final GoSourceCodeFilter.SourceSetType PROJECT_TEST_FILES_ONLY
public static final GoSourceCodeFilter.SourceSetType PROJECT_AND_VENDOR_BUILD_FILES
public static final GoSourceCodeFilter.SourceSetType PROJECT_TEST_AND_VENDOR_BUILD_FILES
public static GoSourceCodeFilter.SourceSetType[] values()
for (GoSourceCodeFilter.SourceSetType c : GoSourceCodeFilter.SourceSetType.values()) System.out.println(c);
public static GoSourceCodeFilter.SourceSetType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null