ezvcard.types
Class ClassificationType
java.lang.Object
ezvcard.types.VCardType
ezvcard.types.TextType
ezvcard.types.ClassificationType
- All Implemented Interfaces:
- Comparable<VCardType>
public class ClassificationType
- extends TextType
Describes the sensitivity of the information in the vCard.
VCard vcard = new VCard();
//sample values: PUBLIC, PRIVATE, CONFIDENTIAL
ClassificationType classType = new ClassificationType("PUBLIC");
vcard.setClassification(classType);
vCard property name: CLASS
vCard versions: 3.0
- Author:
- Michael Angstadt
Methods inherited from class ezvcard.types.VCardType |
compareTo, doMarshalSubTypes, getGroup, getQName, getSubTypes, getTypeName, marshalSubTypes, marshalText, marshalXml, setGroup, unmarshalHtml, unmarshalText, unmarshalXml |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NAME
public static final String NAME
- See Also:
- Constant Field Values
ClassificationType
public ClassificationType()
ClassificationType
public ClassificationType(String classValue)
- Parameters:
classValue
- the classification (e.g. "PUBLIC", "PRIVATE",
"CONFIDENTIAL")
getSupportedVersions
public VCardVersion[] getSupportedVersions()
- Description copied from class:
VCardType
- Gets the vCard versions that support this type.
- Overrides:
getSupportedVersions
in class VCardType
- Returns:
- the vCard versions that support this type.
Copyright © 2012-2013. All Rights Reserved.