io.permazen.RegularSimpleFieldIndexInfo 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;
/**
* Represents an index on a simple field that is not a sub-fied of a complex field.
*/
class RegularSimpleFieldIndexInfo extends SimpleFieldIndexInfo {
RegularSimpleFieldIndexInfo(JSimpleField jfield) {
super(jfield);
assert jfield.parent instanceof JClass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy