![JAR search and dependency download from the Maven repository](/logo.png)
org.mnode.ical4j.json.jot.CardBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-json Show documentation
Show all versions of ical4j-json Show documentation
Custom marshalling between iCal4j objects and JSON formats
The newest version!
package org.mnode.ical4j.json.jot;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import net.fortuna.ical4j.vcard.Property;
import net.fortuna.ical4j.vcard.VCard;
public class CardBuilder extends AbstractJotBuilder {
@Override
public JsonNode build() {
ObjectNode node = createObjectNode();
putIfNotNull("uid", node, component.getProperty(Property.Id.UID));
return node;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy