
com.bugvm.apple.corefoundation.CFNumberFormatter Maven / Gradle / Ivy
/*
* 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.corefoundation;
/**/
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.foundation.*;
import com.bugvm.apple.dispatch.*;
import com.bugvm.apple.coreservices.*;
import com.bugvm.apple.coremedia.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coretext.*;
/* */
/**/
/* */
/**/@Library("CoreFoundation")/* */
/**/public/* */ class /**/CFNumberFormatter/* */
extends /**/CFType/* */
/**//* */ {
/**/public static class CFNumberFormatterPtr extends Ptr {}/* */
/**/static { Bro.bind(CFNumberFormatter.class); }/* */
/**//* */
/**/
protected CFNumberFormatter() {}
/* */
/**//* */
/**//* */
public static CFNumberFormatter create(CFLocale locale, CFNumberFormatterStyle style) {
return create(null, locale, style);
}
public String format(CFNumber number) {
return format(null, this, number);
}
public CFNumber parse(String string, CFRange rangep, CFNumberFormatterOptionFlags options) {
return parse(null, this, string, rangep, options);
}
public static int getDefaultFractionDigitsForCurrencyCode(String currencyCode) {
IntPtr ptr = new IntPtr();
getDecimalInfoForCurrencyCode(currencyCode, ptr, new DoublePtr());
return ptr.get();
}
public static double getRoundingIncrementForCurrencyCode(String currencyCode) {
DoublePtr ptr = new DoublePtr();
getDecimalInfoForCurrencyCode(currencyCode, new IntPtr(), ptr);
return ptr.get();
}
/**/
@Bridge(symbol="CFNumberFormatterGetTypeID", optional=true)
public static native @MachineSizedUInt long getClassTypeID();
@Bridge(symbol="CFNumberFormatterCreate", optional=true)
public static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFNumberFormatter create(CFAllocator allocator, CFLocale locale, CFNumberFormatterStyle style);
@Bridge(symbol="CFNumberFormatterGetLocale", optional=true)
public native CFLocale getLocale();
@Bridge(symbol="CFNumberFormatterGetStyle", optional=true)
public native CFNumberFormatterStyle getStyle();
@Bridge(symbol="CFNumberFormatterGetFormat", optional=true)
public native String getFormat();
@Bridge(symbol="CFNumberFormatterSetFormat", optional=true)
public native void setFormat(String formatString);
@Bridge(symbol="CFNumberFormatterCreateStringWithNumber", optional=true)
protected static native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String format(CFAllocator allocator, CFNumberFormatter formatter, CFNumber number);
@Bridge(symbol="CFNumberFormatterCreateStringWithValue", optional=true)
protected static native @com.bugvm.rt.bro.annotation.Marshaler(CFString.AsStringNoRetainMarshaler.class) String formatValue(CFAllocator allocator, CFNumberFormatter formatter, CFNumberType numberType, VoidPtr valuePtr);
@Bridge(symbol="CFNumberFormatterCreateNumberFromString", optional=true)
protected static native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFNumber parse(CFAllocator allocator, CFNumberFormatter formatter, String string, CFRange rangep, CFNumberFormatterOptionFlags options);
@Bridge(symbol="CFNumberFormatterGetValueFromString", optional=true)
protected native boolean parseValue(String string, CFRange rangep, CFNumberType numberType, VoidPtr valuePtr);
@Bridge(symbol="CFNumberFormatterSetProperty", optional=true)
public native void setProperty(CFNumberFormatterProperty key, CFType value);
@Bridge(symbol="CFNumberFormatterCopyProperty", optional=true)
public native @com.bugvm.rt.bro.annotation.Marshaler(CFType.NoRetainMarshaler.class) CFType getProperty(CFNumberFormatterProperty key);
@Bridge(symbol="CFNumberFormatterGetDecimalInfoForCurrencyCode", optional=true)
private static native boolean getDecimalInfoForCurrencyCode(String currencyCode, IntPtr defaultFractionDigits, DoublePtr roundingIncrement);
/* */
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy