
com.contentful.java.cda.rich.CDARichBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Contentful's Content Delivery API.
package com.contentful.java.cda.rich;
import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;
/**
* A collection of several nodes.
*/
public class CDARichBlock extends CDARichNode implements Serializable {
final List content = new LinkedList<>();
/**
* @return a changeable list of contents of this block
*/
public List getContent() {
return content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy