com.ibm.icu.util.Output 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) 2011-2012, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.util;
/**
* Simple struct-like class for output parameters.
* @param The type of the parameter.
* @stable ICU 4.8
*/
public class Output {
/**
* The value field
* @stable ICU 4.8
*/
public T value;
/**
* {@inheritDoc}
* @stable ICU 4.8
*/
public String toString() {
return value == null ? "null" : value.toString();
}
/**
* Constructs an empty Output
* @stable ICU 4.8
*/
public Output() {
}
/**
* Constructs an Output
withe the given value.
* @param value the initial value
* @stable ICU 4.8
*/
public Output(T value) {
this.value = value;
}
}