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

com.ibm.icu.message2.MFDataModel 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

The newest version!
// © 2022 and later: Unicode, Inc. and others.
// License & terms of use: https://www.unicode.org/copyright.html

package com.ibm.icu.message2;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
 * This maps closely to the official specification.
 * Since it is not final, we will not add javadoc everywhere.
 *
 * 

See the * latest description.

* * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated @SuppressWarnings("javadoc") public class MFDataModel { private MFDataModel() { // Prevent instantiation } // Messages /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface Message { // Provides a common type for PatternMessage and SelectMessage. } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class PatternMessage implements Message { public final List declarations; public final Pattern pattern; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public PatternMessage(List declarations, Pattern pattern) { this.declarations = declarations; this.pattern = pattern; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class SelectMessage implements Message { public final List declarations; public final List selectors; public final List variants; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public SelectMessage( List declarations, List selectors, List variants) { this.declarations = declarations; this.selectors = selectors; this.variants = variants; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface Declaration { // Provides a common type for InputDeclaration, and LocalDeclaration } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class InputDeclaration implements Declaration { public final String name; public final VariableExpression value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public InputDeclaration(String name, VariableExpression value) { this.name = name; this.value = value; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class LocalDeclaration implements Declaration { public final String name; public final Expression value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public LocalDeclaration(String name, Expression value) { this.name = name; this.value = value; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface LiteralOrCatchallKey { // Provides a common type for the selection keys: Variant, Literal, or CatchallKey. } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Variant implements LiteralOrCatchallKey { public final List keys; public final Pattern value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public Variant(List keys, Pattern value) { this.keys = keys; this.value = value; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class CatchallKey implements LiteralOrCatchallKey { // String value; // Always '*' in MF2 } // Patterns // type Pattern = Array; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Pattern { public final List parts; Pattern() { this.parts = new ArrayList<>(); } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface PatternPart { // Provides a common type for StringPart and Expression. } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class StringPart implements PatternPart { public final String value; StringPart(String value) { this.value = value; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface Expression extends PatternPart { // Provides a common type for all kind of expressions: // LiteralExpression, VariableExpression, FunctionExpression, UnsupportedExpression, Markup } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class LiteralExpression implements Expression { public final Literal arg; public final Annotation annotation; public final List attributes; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public LiteralExpression(Literal arg, Annotation annotation, List attributes) { this.arg = arg; this.annotation = annotation; this.attributes = attributes; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class VariableExpression implements Expression { public final VariableRef arg; public final Annotation annotation; public final List attributes; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public VariableExpression( VariableRef arg, Annotation annotation, List attributes) { this.arg = arg; this.annotation = annotation; this.attributes = attributes; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface Annotation { // Provides a common type for FunctionAnnotation, UnsupportedAnnotation } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class FunctionExpression implements Expression { public final FunctionAnnotation annotation; public final List attributes; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public FunctionExpression(FunctionAnnotation annotation, List attributes) { this.annotation = annotation; this.attributes = attributes; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Attribute { public final String name; public final LiteralOrVariableRef value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public Attribute(String name, LiteralOrVariableRef value) { this.name = name; this.value = value; } } // Expressions /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public interface LiteralOrVariableRef { // Provides a common type for Literal and VariableRef, // to represent things like `foo` / `|foo|` / `1234` (literals) // and `$foo` (VariableRef), as argument for placeholders or value in options. } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Literal implements LiteralOrVariableRef, LiteralOrCatchallKey { public final String value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public Literal(String value) { this.value = value; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class VariableRef implements LiteralOrVariableRef { public final String name; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public VariableRef(String name) { this.name = name; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class FunctionAnnotation implements Annotation { public final String name; public final Map options; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public FunctionAnnotation(String name, Map options) { this.name = name; this.options = options; } } /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Option { public final String name; public final LiteralOrVariableRef value; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public Option(String name, LiteralOrVariableRef value) { this.name = name; this.value = value; } } // Markup /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public static class Markup implements Expression { enum Kind { OPEN, CLOSE, STANDALONE } public final Kind kind; public final String name; public final Map options; public final List attributes; /** * @internal ICU 72 technology preview * @deprecated This API is for technology preview only. */ @Deprecated public Markup( Kind kind, String name, Map options, List attributes) { this.kind = kind; this.name = name; this.options = options; this.attributes = attributes; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy