init(rawValue : Int)
Creates a content shape kind.
typealias RawValue
The raw type that can be used to represent all values of the conforming type.
準拠している型の全ての値を表すために使われることができる生の型。
Availability 有効性
Technology
var rawValue: Int
A new instance initialized with raw
will be equivalent to this instance. For example:
raw
で初期化された新しいインスタンスは、このインスタンスに相当します。例えば:
enum PaperSize: String {
case A4, A5, Letter, Legal
}
let selectedSize = PaperSize.Letter
print(selectedSize.rawValue)
// Prints "Letter"
print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
// Prints "true"
init(rawValue : Int)
typealias RawValue