public enum ConnectorConfigSuggestionChecker extends java.lang.Enum<ConnectorConfigSuggestionChecker> implements SuggestionChecker
Enum Constant and Description |
---|
FILEUPLOAD |
FS |
GOOGLE_DRIVE |
WEB |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getFullType() |
int |
getPriority() |
java.lang.String |
getTitle() |
java.lang.String |
getType() |
static boolean |
isValidURL(java.lang.String input,
java.lang.String... validURLProtocols) |
boolean |
test(java.lang.String input) |
static ConnectorConfigSuggestionChecker |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorConfigSuggestionChecker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorConfigSuggestionChecker FS
public static final ConnectorConfigSuggestionChecker FILEUPLOAD
public static final ConnectorConfigSuggestionChecker GOOGLE_DRIVE
public static final ConnectorConfigSuggestionChecker WEB
public static ConnectorConfigSuggestionChecker[] values()
for (ConnectorConfigSuggestionChecker c : ConnectorConfigSuggestionChecker.values()) System.out.println(c);
public static ConnectorConfigSuggestionChecker 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 nullpublic java.lang.String getType()
getType
in interface SuggestionChecker
public java.lang.String getFullType()
getFullType
in interface SuggestionChecker
public java.lang.String getTitle()
getTitle
in interface SuggestionChecker
public int getPriority()
getPriority
in interface SuggestionChecker
public boolean test(java.lang.String input)
test
in interface SuggestionChecker
public static boolean isValidURL(java.lang.String input, java.lang.String... validURLProtocols)