Package com.thinkaurelius.titan.core

Examples of com.thinkaurelius.titan.core.TitanProperty


    }

    @Override
    public String getName() {
        if (name == null) {
            TitanProperty p = Iterables.getOnlyElement(query().
                    includeHidden().type(SystemKey.TypeName).properties(), null);
            Preconditions.checkState(p!=null,"Could not find type for id: %s",getID());
            name = p.getValue(String.class);
        }
        assert name != null;
        return name;
    }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.titan.core.TitanProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.