![JAR search and dependency download from the Maven repository](/logo.png)
com.ibm.icu.impl.data.BreakIteratorRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
*******************************************************************************
* Copyright (C) 1996-2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.impl.data;
import java.util.ListResourceBundle;
/**
* Default break-iterator rules.
* This resource tells which break iterator class type is instantiated
* for each of the standard (built-in) boundary types.
*
* Locales (Thai) needing a dictionary based iterator override this.
*/
public class BreakIteratorRules extends ListResourceBundle {
public Object[][] getContents() {
return contents;
}
static final Object[][] contents = {
// BreakIteratorClasses lists the class names to instantiate for each
// built-in type of BreakIterator
{ "BreakIteratorClasses",
new String[] { "RuleBasedBreakIterator", // character-break iterator class
"RuleBasedBreakIterator", // word-break iterator class
"RuleBasedBreakIterator", // line-break iterator class
"RuleBasedBreakIterator", // sentence-break iterator class
"RuleBasedBreakIterator"} // Title-Case break iterator class
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy