getCurrencyTypeFromId static method

CurrencyType getCurrencyTypeFromId(
  1. String id
)

Implementation

static CurrencyType getCurrencyTypeFromId(final String id) {
  switch (id) {
    case valorantPointsId:
      return CurrencyType.valorantPoints;
    case radianitePointsId:
      return CurrencyType.radianitePoints;
    case unknownCurrency:
      return CurrencyType.unknown;
  }

  return CurrencyType.unknown;
}