1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html#License
3/**
4 *******************************************************************************
5 * Copyright (C) 2006-2008, International Business Machines Corporation and    *
6 * others. All Rights Reserved.                                                *
7 *******************************************************************************
8 */
9package com.ibm.icu.charset;
10
11/**
12 * The purpose of this class is to set isBigEndian to true and isEndianSpecified to true in the super class, and to
13 * allow the Charset framework to open the variant UTF-32 converter without extra setup work.
14 */
15class CharsetUTF32BE extends CharsetUTF32 {
16    public CharsetUTF32BE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
17        super(icuCanonicalName, javaCanonicalName, aliases);
18    }
19}
20