Class ServerErrorLocation
- java.lang.Object
-
- com.styra.opa.openapi.models.errors.ServerErrorLocation
-
public class ServerErrorLocation extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ServerErrorLocation.Builder
-
Constructor Summary
Constructors Constructor Description ServerErrorLocation(java.lang.String file, long row, long col)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServerErrorLocation.Builder
builder()
long
col()
boolean
equals(java.lang.Object o)
java.lang.String
file()
int
hashCode()
long
row()
java.lang.String
toString()
ServerErrorLocation
withCol(long col)
ServerErrorLocation
withFile(java.lang.String file)
ServerErrorLocation
withRow(long row)
-
-
-
Method Detail
-
file
public java.lang.String file()
-
row
public long row()
-
col
public long col()
-
builder
public static final ServerErrorLocation.Builder builder()
-
withFile
public ServerErrorLocation withFile(java.lang.String file)
-
withRow
public ServerErrorLocation withRow(long row)
-
withCol
public ServerErrorLocation withCol(long col)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-