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

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

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

import java.util.List;

import com.squarespace.cldrengine.parsing.WrapperPattern;

public interface AbstractValue {

  int length();
  void add(String type, String value);
  String get(int number);
  void append(R value);
  void insert(int i, String type, String value);
  R render();
  void reset();
  R join(List elems);
  void wrap(WrapperPattern pattern, List args);
  R empty();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy