blob: 1aedc3558731ff489376bcadb5c144cd824d6f96 [file] [log] [blame]
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
public enum NSEnergyFormatterUnit : Int {
case Joule
case Kilojoule
case Calorie // chemistry "calories", abbr "cal"
case Kilocalorie // kilocalories in general, abbr “kcal”, or “C” in some locales (e.g. US) when usesFoodEnergy is set to YES
}
public class NSEnergyFormatter : NSFormatter {
public required init?(coder: NSCoder) {
NSUnimplemented()
}
/*@NSCopying*/ public var numberFormatter: NSNumberFormatter! // default is NSNumberFormatter with NSNumberFormatterDecimalStyle
public var unitStyle: NSFormattingUnitStyle // default is NSFormattingUnitStyleMedium
public var forFoodEnergyUse: Bool // default is NO; if it is set to YES, NSEnergyFormatterUnitKilocalorie may be “C” instead of “kcal"
// Format a combination of a number and an unit to a localized string.
public func stringFromValue(value: Double, unit: NSEnergyFormatterUnit) -> String { NSUnimplemented() }
// Format a number in joules to a localized string with the locale-appropriate unit and an appropriate scale (e.g. 10.3J = 2.46cal in the US locale).
public func stringFromJoules(numberInJoules: Double) -> String { NSUnimplemented() }
// Return a localized string of the given unit, and if the unit is singular or plural is based on the given number.
public func unitStringFromValue(value: Double, unit: NSEnergyFormatterUnit) -> String { NSUnimplemented() }
// Return the locale-appropriate unit, the same unit used by -stringFromJoules:.
public func unitStringFromJoules(numberInJoules: Double, usedUnit unitp: UnsafeMutablePointer<NSEnergyFormatterUnit>) -> String { NSUnimplemented() }
/// - Experiment: This is a draft API currently under consideration for official import into Foundation as a suitable alternative
/// - Note: Since this API is under consideration it may be either removed or revised in the near future
public override func objectValue(string: String) throws -> AnyObject? { return nil }
}