io.permazen.PermazenSetField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-main Show documentation
Show all versions of permazen-main Show documentation
Permazen classes that map Java model classes onto the core API.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen;
import com.google.common.base.Converter;
import com.google.common.base.Preconditions;
import com.google.common.reflect.TypeParameter;
import com.google.common.reflect.TypeToken;
import io.permazen.change.SetFieldAdd;
import io.permazen.change.SetFieldClear;
import io.permazen.change.SetFieldRemove;
import io.permazen.core.ObjId;
import io.permazen.core.SetField;
import io.permazen.core.Transaction;
import io.permazen.schema.SetSchemaField;
import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.List;
import java.util.NavigableSet;
import java.util.Set;
import java.util.TreeSet;
import java.util.concurrent.ConcurrentSkipListSet;
/**
* Represents a set field in a {@link PermazenClass}.
*/
public class PermazenSetField extends PermazenCollectionField {
// Constructor
PermazenSetField(String name, int storageId, io.permazen.annotation.PermazenSetField annotation,
PermazenSimpleField elementField, String description, Method getter) {
super(name, storageId, annotation, elementField, description, getter);
}
// Public Methods
@Override
public io.permazen.annotation.PermazenSetField getDeclaringAnnotation() {
return (io.permazen.annotation.PermazenSetField)super.getDeclaringAnnotation();
}
@Override
public NavigableSet> getValue(PermazenObject pobj) {
Preconditions.checkArgument(pobj != null, "null pobj");
return pobj.getPermazenTransaction().readSetField(pobj.getObjId(), this.name, false);
}
@Override
public R visit(PermazenFieldSwitch target) {
Preconditions.checkArgument(target != null, "null target");
return target.casePermazenSetField(this);
}
@Override
public SetField> getSchemaItem() {
return (SetField>)super.getSchemaItem();
}
// Package Methods
@Override
SetSchemaField createSchemaItem() {
return new SetSchemaField();
}
@Override
@SuppressWarnings("unchecked")
Iterable iterateReferences(Transaction tx, ObjId id, PermazenReferenceField subField) {
return (Iterable)tx.readSetField(id, this.name, false);
}
@Override
@SuppressWarnings("serial")
TypeToken> buildTypeToken(TypeToken elementType) {
return new TypeToken>() { }.where(new TypeParameter() { }, elementType);
}
// This method exists solely to bind the generic type parameters
@Override
@SuppressWarnings("serial")
void addChangeParameterTypes(List> types, Class targetType, TypeToken elementType) {
types.add(new TypeToken>() { }
.where(new TypeParameter() { }, targetType)
.where(new TypeParameter() { }, elementType.wrap()));
types.add(new TypeToken>() { }
.where(new TypeParameter() { }, targetType));
types.add(new TypeToken>() { }
.where(new TypeParameter() { }, targetType)
.where(new TypeParameter() { }, elementType.wrap()));
}
@Override
public NavigableSetConverter, ?> getConverter(PermazenTransaction ptx) {
final Converter, ?> elementConverter = this.elementField.getConverter(ptx);
return elementConverter != null ? this.createConverter(elementConverter) : null;
}
// This method exists solely to bind the generic type parameters
private NavigableSetConverter createConverter(Converter elementConverter) {
return new NavigableSetConverter<>(elementConverter);
}
// POJO import/export
@Override
Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy