Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PhoneticFirstName.kt « property « vcard4android « bitfire « at « java « main « src - github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d30a153e151f4c2cb239c20a7cf2aed1e5df0660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package at.bitfire.vcard4android.property

import ezvcard.io.scribe.StringPropertyScribe
import ezvcard.property.TextProperty

class PhoneticFirstName(value: String?): TextProperty(value) {

    object Scribe :
        StringPropertyScribe<PhoneticFirstName>(PhoneticFirstName::class.java, "X-PHONETIC-FIRST-NAME") {

        override fun _parseValue(value: String?) = PhoneticFirstName(value)

    }

}