本文整理匯總了Java中com.thinkaurelius.titan.graphdb.types.system.SystemTypeManager類的典型用法代碼示例。如果您正苦於以下問題:Java SystemTypeManager類的具體用法?Java SystemTypeManager怎麽用?Java SystemTypeManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SystemTypeManager類屬於com.thinkaurelius.titan.graphdb.types.system包,在下文中一共展示了SystemTypeManager類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getProperty
import com.thinkaurelius.titan.graphdb.types.system.SystemTypeManager; //導入依賴的package包/類
@Override
public<A> A getProperty(String key) {
if (key.equals(executor.stateKey)) {
return (A)executor.getVertexState(getLongId());
}
SystemRelationType t = SystemTypeManager.getSystemType(key);
if (t!=null && t instanceof ImplicitKey) return ((ImplicitKey)t).computeProperty(this);
throw getAccessException();
}
示例2: checkName
import com.thinkaurelius.titan.graphdb.types.system.SystemTypeManager; //導入依賴的package包/類
public static void checkName(String name) {
Preconditions.checkArgument(StringUtils.isNotBlank(name), "Need to specify name");
for (char c : RESERVED_CHARS)
Preconditions.checkArgument(name.indexOf(c) < 0, "Name can not contains reserved character %s: %s", c, name);
Preconditions.checkArgument(!name.startsWith(SystemTypeManager.systemETprefix),
"Name starts with a reserved keyword: " + SystemTypeManager.systemETprefix);
Preconditions.checkArgument(!SystemTypeManager.isSystemType(name.toLowerCase()),
"Name is reserved by system and cannot be used: %s",name);
}