All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vertexium.property.PropertyValue Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.property;

import java.io.Serializable;

public class PropertyValue implements Serializable {
    static final long serialVersionUID = 42L;
    private boolean store = true; // Need to keep for Kryo serialization
    private boolean searchIndex = true;

    public PropertyValue() {

    }

    @SuppressWarnings("unchecked")
    public  T searchIndex(boolean searchIndex) {
        this.searchIndex = searchIndex;
        return (T) this;
    }

    public boolean isSearchIndex() {
        return searchIndex;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy