1 | package org.cardanofoundation.explorer.api.common.enumeration; | |
2 | ||
3 | import lombok.AccessLevel; | |
4 | import lombok.Getter; | |
5 | import lombok.RequiredArgsConstructor; | |
6 | import lombok.experimental.FieldDefaults; | |
7 | ||
8 | @FieldDefaults(level = AccessLevel.PRIVATE, makeFinal = true) | |
9 | @RequiredArgsConstructor | |
10 | @Getter | |
11 | public enum AnalyticType { | |
12 | ONE_DAY("1d"), | |
13 | ONE_WEEK("1w"), | |
14 | ONE_MONTH("1m"), | |
15 | THREE_MONTH("3m"); | |
16 | ||
17 |
1
1. getValue : replaced return value with "" for org/cardanofoundation/explorer/api/common/enumeration/AnalyticType::getValue → NO_COVERAGE |
String value; |
18 | } | |
Mutations | ||
17 |
1.1 |