//
// Copyright (c)1998-2011 Pearson Education, Inc. or its affiliate(s).
// All rights reserved.
//
package openadk.library;
/**
* Wraps a Java <c>Integer<c> Type in an immutable instance that can be used
* to construct a {@link openadk.library.SIFSimpleType} to represent
* properties in SIF data objects.
*
* @author Andrew Elmhorst
* @version 2.0
*/
public class SIFLong extends SIFSimpleType<Long> {
/**
*
*/
private static final long serialVersionUID = -2741327258184937701L;
/**
* Creates an instance of SIFInt
* @param value
*/
public SIFLong( Long value )
{
super( value );
}
/* (non-Javadoc)
* @see openadk.library.SIFSimpleType#getTypeConverter()
*/
@Override
public SIFTypeConverter<Long> getTypeConverter() {
return SIFTypeConverters.LONG;
}
}