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

com.squarespace.cldrengine.internal.FieldArrow Maven / Gradle / Ivy

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

public class FieldArrow {

  private int offset;

  public FieldArrow(int offset) {
    this.offset = offset;
  }

  public String get(PrimitiveBundle bundle) {
    return bundle.get(this.offset);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy