Enum EurekaHttpClientDecorator.RequestType
- java.lang.Object
-
- java.lang.Enum<EurekaHttpClientDecorator.RequestType>
-
- com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.RequestType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EurekaHttpClientDecorator.RequestType>
- Enclosing class:
- EurekaHttpClientDecorator
public static enum EurekaHttpClientDecorator.RequestType extends java.lang.Enum<EurekaHttpClientDecorator.RequestType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CancelDeleteStatusOverrideGetApplicationGetApplicationInstanceGetApplicationsGetDeltaGetInstanceGetSecureVipGetVipRegisterSendHeartBeatStatusUpdate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EurekaHttpClientDecorator.RequestTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EurekaHttpClientDecorator.RequestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Register
public static final EurekaHttpClientDecorator.RequestType Register
-
Cancel
public static final EurekaHttpClientDecorator.RequestType Cancel
-
SendHeartBeat
public static final EurekaHttpClientDecorator.RequestType SendHeartBeat
-
StatusUpdate
public static final EurekaHttpClientDecorator.RequestType StatusUpdate
-
DeleteStatusOverride
public static final EurekaHttpClientDecorator.RequestType DeleteStatusOverride
-
GetApplications
public static final EurekaHttpClientDecorator.RequestType GetApplications
-
GetDelta
public static final EurekaHttpClientDecorator.RequestType GetDelta
-
GetVip
public static final EurekaHttpClientDecorator.RequestType GetVip
-
GetSecureVip
public static final EurekaHttpClientDecorator.RequestType GetSecureVip
-
GetApplication
public static final EurekaHttpClientDecorator.RequestType GetApplication
-
GetInstance
public static final EurekaHttpClientDecorator.RequestType GetInstance
-
GetApplicationInstance
public static final EurekaHttpClientDecorator.RequestType GetApplicationInstance
-
-
Method Detail
-
values
public static EurekaHttpClientDecorator.RequestType[] 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 (EurekaHttpClientDecorator.RequestType c : EurekaHttpClientDecorator.RequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EurekaHttpClientDecorator.RequestType 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
-
-