net.fortuna.ical4j.vcard.parameter.XParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-vcard Show documentation
Show all versions of ical4j-vcard Show documentation
Support for the vCard specification
The newest version!
package net.fortuna.ical4j.vcard.parameter;
import net.fortuna.ical4j.model.Parameter;
/**
* Created by fortuna on 1/10/14.
*/
public class XParameter extends Parameter {
private final String value;
public XParameter(String extendedName, String value) {
super(extendedName);
this.value = value;
}
@Override
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy