blob: ee9ddaf76df77e99e1efe9c935a9c49dd6b7bafd [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
* 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 <code>Output&lt;Integer&gt;</code> 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
* @hide All android.icu classes are currently hidden
*/
@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 <code>OutputInt</code> with value 0.
*
* @deprecated This API is ICU internal only.
* @hide draft / provisional / internal are hidden on Android
*/
@Deprecated
public OutputInt() {
}
/**
* Constructs an <code>OutputInt</code> 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
public String toString() {
return Integer.toString(value);
}
}