Class ICalParameter

java.lang.Object
org.bzdev.net.calendar.ICalParameter

public class ICalParameter extends Object
The iCalendar parameter class. This interface is used for parsing iCalendar objects.

An iCalendar parameter annotate an iCalendar property. Each parameter has a name, and a value. A boolean method determines if the value had been quoted (such quotes are not provided in the value itself).

  • Constructor Details

    • ICalParameter

      protected ICalParameter()
      Constructor.
  • Method Details

    • getName

      public String getName()
      Get the name of a parameter.
      Returns:
      the name
    • wasQuoted

      public boolean wasQuoted()
      Determine if a value was quoted.
      Returns:
      true if the value was quoted; false otherwise
    • getValue

      public String getValue()
      Get the value of a parameter.
      Returns:
      the value (with any quotes removed)