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

PhoneticMiddleName.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: fe50a827da82b1587da691664e38697fb7704348 (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 PhoneticMiddleName(value: String?): TextProperty(value) {

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

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

    }

}