Package cn.tzq0301.http.rest.result
Record Class Result<T>
java.lang.Object
java.lang.Record
cn.tzq0301.http.rest.result.Result<T>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NonNull Stringcode()Returns the value of thecoderecord component.@Nullable Tdata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.static Result<?>error(ResultCodeEnum resultCodeEnum) static Result<?>error(ResultCodeEnum resultCodeEnum, String message) static <T> Result<T>error(ResultCodeEnum resultCodeEnum, String message, T data) static <T> Result<T>error(ResultCodeEnum resultCodeEnum, T data) final inthashCode()Returns a hash code value for this object.@NonNull Stringmessage()Returns the value of themessagerecord component.static Result<?>success()static <T> Result<T>success(@Nullable T data) final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Result
Creates an instance of aResultrecord class.- Parameters:
code- the value for thecoderecord componentmessage- the value for themessagerecord componentdata- the value for thedatarecord component
-
-
Method Details
-
success
-
success
-
error
-
error
-
error
-
error
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
code
Returns the value of thecoderecord component.- Returns:
- the value of the
coderecord component
-
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-