All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squarespace.cldrengine.api.CurrencySpacingPos Maven / Gradle / Ivy

The newest version!
package com.squarespace.cldrengine.api;

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import lombok.Generated;
import com.squarespace.cldrengine.internal.StringEnum;

@Generated
public enum CurrencySpacingPos implements StringEnum {

  BEFORE("before"),
  AFTER("after")
  ;

  private static final Map REVERSE = new HashMap<>();
  static {
    Arrays.stream(CurrencySpacingPos.values()).forEach(e -> REVERSE.put(e.value, e));
  }

  private final String value;

  private CurrencySpacingPos(String value) {
    this.value = value;
  }

  public String value() {
    return this.value;
  }

  public static CurrencySpacingPos fromString(String s) {
    return REVERSE.get(s);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy