Class HttpMethod
- java.lang.Object
-
- de.hybris.platform.integrationservices.enums.HttpMethod
-
- All Implemented Interfaces:
HybrisEnumValue,java.io.Serializable
public class HttpMethod extends java.lang.Object implements HybrisEnumValue
Generated enum HttpMethod declared at extension integrationservices.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_TYPECODEGenerated model type code constant.static HttpMethodDELETEGenerated enum value for HttpMethod.DELETE declared at extension integrationservices.static HttpMethodPATCHGenerated enum value for HttpMethod.PATCH declared at extension integrationservices.static HttpMethodPOSTGenerated enum value for HttpMethod.POST declared at extension integrationservices.static java.lang.StringSIMPLE_CLASSNAMEGenerated simple class name constant.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Compares this object to the specified object.java.lang.StringgetCode()Gets the code of this enum value.java.lang.StringgetType()Gets the type this enum value belongs to.inthashCode()Returns a hash code for thisHttpMethod.java.lang.StringtoString()Returns the code representing this enum value.static HttpMethodvalueOf(java.lang.String code)Returns a HttpMethod instance representing the specified enum value.
-
-
-
Field Detail
-
_TYPECODE
public static final java.lang.String _TYPECODE
Generated model type code constant.- See Also:
- Constant Field Values
-
SIMPLE_CLASSNAME
public static final java.lang.String SIMPLE_CLASSNAME
Generated simple class name constant.- See Also:
- Constant Field Values
-
POST
public static final HttpMethod POST
Generated enum value for HttpMethod.POST declared at extension integrationservices.
-
DELETE
public static final HttpMethod DELETE
Generated enum value for HttpMethod.DELETE declared at extension integrationservices.
-
PATCH
public static final HttpMethod PATCH
Generated enum value for HttpMethod.PATCH declared at extension integrationservices.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
Compares this object to the specified object. The result istrueif and only if the argument is notnulland is anHttpMethodobject that contains the enum valuecodeas this object.- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- the object to compare with.- Returns:
trueif the objects are the same;falseotherwise.
-
getCode
public java.lang.String getCode()
Gets the code of this enum value.- Specified by:
getCodein interfaceHybrisEnumValue- Returns:
- code of value
-
getType
public java.lang.String getType()
Gets the type this enum value belongs to.- Specified by:
getTypein interfaceHybrisEnumValue- Returns:
- code of type
-
hashCode
public int hashCode()
Returns a hash code for thisHttpMethod.- Overrides:
hashCodein classjava.lang.Object- Returns:
- a hash code value for this object, equal to the enum value
coderepresented by thisHttpMethodobject.
-
toString
public java.lang.String toString()
Returns the code representing this enum value.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of the value of this object.
-
valueOf
public static HttpMethod valueOf(java.lang.String code)
Returns a HttpMethod instance representing the specified enum value.- Parameters:
code- an enum value- Returns:
- a HttpMethod instance representing value.
-
-