com.bugvm.apple.foundation.NSNumber Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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 com.bugvm.apple.foundation;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.corefoundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coremedia.*;
import com.bugvm.apple.security.*;
import com.bugvm.apple.dispatch.*;
/* */
/**/
/* */
/**/@Library("Foundation") @NativeClass/* */
/**/public/* */ class /**/NSNumber/* */
extends /**/NSValue/* */
/**/implements NSPropertyList/* */ {
/**/public static class NSNumberPtr extends Ptr {}/* */
/**/static { ObjCRuntime.bind(NSNumber.class); }/* */
/**//* */
/**/
protected NSNumber(SkipInit skipInit) { super(skipInit); }
/* */
/**/
@Property(selector = "charValue")
public native byte byteValue();
@Property(selector = "shortValue")
public native short shortValue();
@Property(selector = "unsignedShortValue")
public native char charValue();
@Property(selector = "intValue")
public native int intValue();
@Property(selector = "longLongValue")
public native long longValue();
@Property(selector = "floatValue")
public native float floatValue();
@Property(selector = "doubleValue")
public native double doubleValue();
@Property(selector = "boolValue")
public native boolean booleanValue();
@Property(selector = "stringValue")
public native String stringValue();
@Property(selector = "decimalValue")
public native @ByVal NSDecimal decimalValue();
/* */
/**//* */
public static NSNumber valueOf(Number value) {
if (value instanceof Byte) {
return valueOf((byte)value);
}
if (value instanceof Short) {
return valueOf((short)value);
}
if (value instanceof Integer) {
return valueOf((int)value);
}
if (value instanceof Long) {
return valueOf((long)value);
}
if (value instanceof Float) {
return valueOf((float)value);
}
if (value instanceof Double) {
return valueOf((double)value);
}
throw new IllegalArgumentException("value is not a supported number type: " + value.getClass());
}
/**/
@Method(selector = "compare:")
public native NSComparisonResult compare(NSNumber otherNumber);
@Method(selector = "isEqualToNumber:")
public native boolean equalsTo(NSNumber number);
@Method(selector = "descriptionWithLocale:")
public native String toString(NSLocale locale);
@Method(selector = "numberWithChar:")
public static native NSNumber valueOf(byte value);
@Method(selector = "numberWithShort:")
public static native NSNumber valueOf(short value);
@Method(selector = "numberWithUnsignedShort:")
public static native NSNumber valueOf(char value);
@Method(selector = "numberWithInt:")
public static native NSNumber valueOf(int value);
@Method(selector = "numberWithLongLong:")
public static native NSNumber valueOf(long value);
@Method(selector = "numberWithFloat:")
public static native NSNumber valueOf(float value);
@Method(selector = "numberWithDouble:")
public static native NSNumber valueOf(double value);
@Method(selector = "numberWithBool:")
public static native NSNumber valueOf(boolean value);
/* */
}