| 1 | package pl.zankowski.iextrading4j.client.rest.request.account; | |
| 2 | ||
| 3 | public enum UsageType { | |
| 4 | ||
| 5 | MESSAGES("messages"), | |
| 6 | RULES("rules"), | |
| 7 | RULE_RECORDS("rule-records"), | |
| 8 | ALERTS("alerts"), | |
| 9 | ALERT_RECORDS("alert-records"); | |
| 10 | ||
| 11 | private final String type; | |
| 12 | ||
| 13 | UsageType(final String type) { | |
| 14 | this.type = type; | |
| 15 | } | |
| 16 | ||
| 17 | public String getType() { | |
| 18 |
1
1. getType : replaced return value with "" for pl/zankowski/iextrading4j/client/rest/request/account/UsageType::getType → SURVIVED |
return type; |
| 19 | } | |
| 20 | ||
| 21 | } | |
Mutations | ||
| 18 |
1.1 |