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

AddressBookServerKind.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: 3124a75e2d7ebbbc36ee44c0344e4c5a389bf3cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package at.bitfire.vcard4android.property

import ezvcard.io.scribe.KindScribe
import ezvcard.io.scribe.StringPropertyScribe
import ezvcard.io.scribe.UriPropertyScribe
import ezvcard.property.Kind
import ezvcard.property.TextProperty
import ezvcard.property.UriProperty

class AddressBookServerKind(value: String?): Kind(value) {

    object Scribe :
        StringPropertyScribe<AddressBookServerKind>(AddressBookServerKind::class.java, "X-ADDRESSBOOKSERVER-KIND") {

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

    }

}