io.permazen.JMapFieldScanner 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.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen;
import io.permazen.annotation.JField;
import io.permazen.annotation.JMapField;
import io.permazen.annotation.PermazenType;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.NavigableMap;
import java.util.SortedMap;
/**
* Scans for {@link JMapField @JMapField} annotations.
*/
class JMapFieldScanner extends AbstractFieldScanner {
JMapFieldScanner(JClass jclass, PermazenType permazenType) {
super(jclass, JMapField.class, permazenType);
}
@Override
protected JMapField getDefaultAnnotation() {
return new DefaultJMapField(this.permazenType);
}
@Override
protected boolean includeMethod(Method method, JMapField annotation) {
this.checkNotStatic(method);
this.checkReturnType(method, Map.class, SortedMap.class, NavigableMap.class);
this.checkParameterTypes(method);
return true;
}
@Override
protected boolean isAutoPropertyCandidate(Method method) {
return super.isAutoPropertyCandidate(method) && Map.class.isAssignableFrom(method.getReturnType());
}
// DefaultJMapField
private static class DefaultJMapField implements JMapField {
private PermazenType permazenType;
DefaultJMapField(PermazenType permazenType) {
this.permazenType = permazenType;
}
@Override
public Class annotationType() {
return JMapField.class;
}
@Override
public String name() {
return "";
}
@Override
public int storageId() {
return 0;
}
@Override
public JField key() {
return JFieldScanner.getDefaultJField(this.permazenType);
}
@Override
public JField value() {
return JFieldScanner.getDefaultJField(this.permazenType);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy