IceGrid.BoxedString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Descriptor.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
/**
* A "boxed" string.
*
**/
public class BoxedString extends Ice.ObjectImpl
{
public BoxedString()
{
this.value = "";
}
public BoxedString(String value)
{
this.value = value;
}
private static class _F implements Ice.ValueFactory
{
public Ice.Object create(String type)
{
assert(type.equals(ice_staticId()));
return new BoxedString();
}
}
private static Ice.ValueFactory _factory = new _F();
public static Ice.ValueFactory
ice_factory()
{
return _factory;
}
private static final String[] _ids =
{
"::Ice::Object",
"::IceGrid::BoxedString"
};
public boolean ice_isA(String s)
{
return java.util.Arrays.binarySearch(_ids, s) >= 0;
}
public boolean ice_isA(String s, Ice.Current current)
{
return java.util.Arrays.binarySearch(_ids, s) >= 0;
}
public String[] ice_ids()
{
return _ids;
}
public String[] ice_ids(Ice.Current current)
{
return _ids;
}
public String ice_id()
{
return _ids[1];
}
public String ice_id(Ice.Current current)
{
return _ids[1];
}
public static String ice_staticId()
{
return _ids[1];
}
protected void _iceWriteImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice(ice_staticId(), -1, true);
ostr_.writeString(value);
ostr_.endSlice();
}
protected void _iceReadImpl(Ice.InputStream istr_)
{
istr_.startSlice();
value = istr_.readString();
istr_.endSlice();
}
/**
* The value of the boxed string.
**/
public String value;
public BoxedString
clone()
{
return (BoxedString)super.clone();
}
public static final long serialVersionUID = -7825534311018167189L;
}