|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectbiweekly.property.ICalProperty
biweekly.property.ValuedProperty<String>
biweekly.property.TextProperty
biweekly.property.Classification
public class Classification
Defines the level of sensitivity of the iCalendar data. If not specified, the data within the iCalendar object should be considered "public".
Examples:
Classification clazz = Classification.public_(); if (clazz.isPublic()) { ... }
Field Summary |
---|
Fields inherited from class biweekly.property.ValuedProperty |
---|
value |
Fields inherited from class biweekly.property.ICalProperty |
---|
parameters |
Constructor Summary | |
---|---|
Classification(String classification)
Creates a new classification property. |
Method Summary | |
---|---|
static Classification |
confidential()
Creates a "confidential" classification property. |
boolean |
isConfidential()
Determines if the classification level is "confidential". |
boolean |
isPrivate()
Determines if the classification level is "private". |
boolean |
isPublic()
Determines if the classification level is "public". |
static Classification |
private_()
Creates a "private" classification property. |
static Classification |
public_()
Creates a "public" classification property. |
Methods inherited from class biweekly.property.ValuedProperty |
---|
getValue, setValue, validate |
Methods inherited from class biweekly.property.ICalProperty |
---|
addParameter, getAltRepresentation, getCommonName, getDirectoryEntry, getFormatType, getLanguage, getParameter, getParameters, getParameters, getSentBy, getTimezoneId, removeParameter, setAltRepresentation, setCommonName, setDirectoryEntry, setFormatType, setLanguage, setParameter, setParameter, setParameters, setSentBy, setTimezone, setTimezoneId, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Classification(String classification)
classification
- the classification level (e.g. "PUBLIC")Method Detail |
---|
public static Classification public_()
public boolean isPublic()
public static Classification private_()
public boolean isPrivate()
public static Classification confidential()
public boolean isConfidential()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |