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

com.ibm.icu.impl.duration.impl.RecordReader Maven / Gradle / Ivy

Go to download

International Component for Unicode for Java (ICU4J) is a mature, widely used Java library providing Unicode and Globalization support

There is a newer version: 75.1
Show newest version
/*
******************************************************************************
* Copyright (C) 2007, International Business Machines Corporation and   *
* others. All Rights Reserved.                                               *
******************************************************************************
*/

package com.ibm.icu.impl.duration.impl;

interface RecordReader {
  boolean open(String title);
  boolean close();

  boolean bool(String name);
  boolean[] boolArray(String name);
  char character(String name);
  char[] characterArray(String name);
  byte namedIndex(String name, String[] names);
  byte[] namedIndexArray(String name, String[] names);
  String string(String name);
  String[] stringArray(String name);
  String[][] stringTable(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy