|
||||||||||
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.EnumProperty
biweekly.property.Classification
public class Classification
Defines the level of sensitivity of the iCalendar data. If not specified, the data should be considered "public".
Examples:
//creating a new property Classification classification = Classification.public_(); if (classification.isPublic()) { //its value is "PUBLIC" }
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. |
protected Collection<String> |
getStandardValues()
Gets the list of acceptable values for this 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.EnumProperty |
---|
is, validate |
Methods inherited from class biweekly.property.ValuedProperty |
---|
getValue, setValue |
Methods inherited from class biweekly.property.ICalProperty |
---|
addParameter, getParameter, getParameters, getParameters, removeParameter, setParameter, setParameter, setParameters, 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()
protected Collection<String> getStandardValues()
EnumProperty
getStandardValues
in class EnumProperty
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |