All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.cloud.objectstorage.thirdparty.ion.IonInt Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.13.4
Show newest version
/*
 * Copyright 2007-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at:
 *
 *     http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 */

package software.amazon.ion;

import java.math.BigInteger;

/**
 * An Ion int value.
 * 

* WARNING: This interface should not be implemented or extended by * code outside of this library. */ public interface IonInt extends IonValue { /** * Gets the content of this Ion int as a Java * int value. * * @return the int value. * @throws NullValueException if this.isNullValue(). */ public int intValue() throws NullValueException; /** * Gets the content of this Ion int as a Java * long value. * * @return the long value. * @throws NullValueException if this.isNullValue(). */ public long longValue() throws NullValueException; /** * Gets the content of this Ion int as a Java * {@link BigInteger} value. * * @return the BigInteger value, * or null if this is null.int. */ public BigInteger bigIntegerValue(); /** * Gets an {@link IntegerSize} representing the smallest-possible * Java type of the underlying content, or {@code null} if this is * {@code null.int}. * * @see IonReader#getIntegerSize() */ public IntegerSize getIntegerSize(); /** * Sets the content of this value. */ public void setValue(int value); /** * Sets the content of this value. */ public void setValue(long value); /** * Sets the content of this value. * The integer portion of the number is used, any fractional portion is * ignored. * * @param content the new content of this int; * may be null to make this null.int. */ public void setValue(Number content); public IonInt clone() throws UnknownSymbolException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy