GreenBookType

An enumeration containing the type of green book

Declaration

@objc public enum GreenBookType : String, Encodable {
    case Bilingual
    case English
    case Unspecified
    
    public var stringValue: String { get }
}

Only relevant details are shown, boilerplate or standard Swift generated code is omitted

Summary

Cases

Name

Description

The green book type is Bilingual.

The green book type is English.

The green book type is unspecified.

Public variables

Name

Type

Description

String

Returns the case name, separated by spaces, in string format.

Cases

Bilingual

case Bilingual

The green book type is Bilingual.

English

case English

The green book type is English.

Unspecified

case Unspecified

The green book type is unspecified.

Public variables

stringValue

public var stringValue: String { get }

Example: "English"

Returns the case name, separated by spaces, in string format.

Where this is used

Last updated