Created by zl on 2019/03/01.
| 4 | * Created by zl on 2019/03/01. |
| 5 | */ |
| 6 | public enum HTTPStatus { |
| 7 | OK(200),NOT_FOUND(404),INTERNAL_SERVER_ERROR(500),BAD_REQUEST(400),MOVED_TEMPORARILY(302); |
| 8 | private int code; |
| 9 | HTTPStatus(int code){ |
| 10 | this.code = code; |
| 11 | } |
| 12 | public int getCode(){ |
| 13 | return code; |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected