Package org.eclipse.jgit.transport
Enum HttpConfig.HttpRedirectMode
- java.lang.Object
-
- java.lang.Enum<HttpConfig.HttpRedirectMode>
-
- org.eclipse.jgit.transport.HttpConfig.HttpRedirectMode
-
- All Implemented Interfaces:
Serializable
,Comparable<HttpConfig.HttpRedirectMode>
,Config.ConfigEnum
- Enclosing class:
- HttpConfig
public static enum HttpConfig.HttpRedirectMode extends Enum<HttpConfig.HttpRedirectMode> implements Config.ConfigEnum
Config values for http.followRedirect.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matchConfigValue(String s)
Checks if the given string matches with enum value.String
toConfigValue()
Converts enumeration value into a string to be save in config.static HttpConfig.HttpRedirectMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static HttpConfig.HttpRedirectMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRUE
public static final HttpConfig.HttpRedirectMode TRUE
Always follow redirects (up to the http.maxRedirects limit).
-
INITIAL
public static final HttpConfig.HttpRedirectMode INITIAL
Only follow redirects on the initial GET request. This is the default.
-
FALSE
public static final HttpConfig.HttpRedirectMode FALSE
Never follow redirects.
-
-
Method Detail
-
values
public static HttpConfig.HttpRedirectMode[] 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 (HttpConfig.HttpRedirectMode c : HttpConfig.HttpRedirectMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpConfig.HttpRedirectMode 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
-
toConfigValue
public String toConfigValue()
Description copied from interface:Config.ConfigEnum
Converts enumeration value into a string to be save in config.- Specified by:
toConfigValue
in interfaceConfig.ConfigEnum
- Returns:
- the enum value as config string
-
matchConfigValue
public boolean matchConfigValue(String s)
Description copied from interface:Config.ConfigEnum
Checks if the given string matches with enum value.- Specified by:
matchConfigValue
in interfaceConfig.ConfigEnum
- Parameters:
s
- the string to match- Returns:
- true if the given string matches enum value, false otherwise
-
-