/* GENERATED SOURCE. DO NOT MODIFY. */ // © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2014, International Business Machines Corporation and * others. All Rights Reserved. ******************************************************************************* */ package android.icu.util; /** * Simple struct-like class for int output parameters. * Like Output<Integer> but without auto-boxing. * * @deprecated This API is ICU internal only. * @hide Only a subset of ICU is exposed in Android * @hide draft / provisional / internal are hidden on Android */ @Deprecated public class OutputInt { /** * The value field. * * @deprecated This API is ICU internal only. * @hide draft / provisional / internal are hidden on Android */ @Deprecated public int value; /** * Constructs an OutputInt with value 0. * * @deprecated This API is ICU internal only. * @hide draft / provisional / internal are hidden on Android */ @Deprecated public OutputInt() { } /** * Constructs an OutputInt with the given value. * * @param value the initial value * @deprecated This API is ICU internal only. * @hide draft / provisional / internal are hidden on Android */ @Deprecated public OutputInt(int value) { this.value = value; } /** * {@inheritDoc} * @deprecated This API is ICU internal only. * @hide draft / provisional / internal are hidden on Android */ @Deprecated @Override public String toString() { return Integer.toString(value); } }