Lines Matching refs:RDFList
43 import org.mindswap.owl.list.RDFList;
50 public class RDFListImpl extends WrappedIndividual implements RDFList {
54 private RDFList list;
56 private RDFListIterator(RDFList list) {
88 public RDFList getRest() {
89 return (RDFList) getProperty(vocabulary.rest()).castTo(RDFList.class);
92 public void setRest(RDFList rest) {
126 for(RDFList list = this; !list.isEmpty(); list = list.getRest())
134 for(RDFList list = this; !list.isEmpty(); list = list.getRest())
151 public RDFList add(OWLValue item) {
155 RDFList rest = getRest();
165 public RDFList insert(OWLValue first) {
174 public RDFList insertAt(int index, OWLValue value) {
181 RDFList rest = getRest();
185 public RDFList remove(OWLValue value) {
191 RDFList rest = this;
202 public RDFList removeAt(int index) {
213 public RDFList remove() {
214 RDFList list = getRest();
220 list = (RDFList) vocabulary.nil().castTo(RDFList.class);
231 public RDFList removeAll() {
232 RDFList list = this;
254 RDFList list = this;