- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.edu.icm.model.bwmeta.y.YAttribute.getKey()
方法的一些代码示例,展示了YAttribute.getKey()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAttribute.getKey()
方法的具体详情如下:
包路径:pl.edu.icm.model.bwmeta.y.YAttribute
类名称:YAttribute
方法名:getKey
暂无
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* TODO, so far: ignore
* @param ya
* @param paos_ref
* @param refno
* @return
*/
private boolean parseReferenceType(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_REFERENCE_PARSED_TYPE.equals(ya.getKey())){/*2*/
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
private static boolean attributeHasOneOfKeys(YAttribute attribute, String... keys) {
final String key = attribute.getKey();
for (String matchKey : keys) {
if (matchKey.equals(key)) {
return true;
}
}
return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* TODO, so far: ignore
* @param ya
* @param paos_ref
* @param refno
* @return
*/
private boolean parseReferenceType(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_REFERENCE_PARSED_TYPE.equals(ya.getKey())){/*2*/
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* accomplished
* @param ya
* @param paos_ref
* @param refno
* @return
*/
private boolean parseReferenceName(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_ENHANCED_FROM_ZBL_NAME.equals(ya.getKey())){/*8*/
for(YAttribute inner : ya.getAttributes()){
if(YConstants.AT_ENHANCED_FROM_ZBL_TYPE.equals(inner.getKey())){/*8.1*/
}else if(YConstants.AT_ENHANCED_FROM_ZBL_LANGUAGE.equals(inner.getKey())){/*8.2*/
}else if(YConstants.AT_ENHANCED_FROM_ZBL_VALUE.equals(inner.getKey())){/*8.3*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_TITLE, inner.getValue()));
}
}
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* accomplished
* @param ya
* @param paos_ref
* @param refno
* @return
*/
private boolean parseReferenceName(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_ENHANCED_FROM_ZBL_NAME.equals(ya.getKey())){/*8*/
for(YAttribute inner : ya.getAttributes()){
if(YConstants.AT_ENHANCED_FROM_ZBL_TYPE.equals(inner.getKey())){/*8.1*/
}else if(YConstants.AT_ENHANCED_FROM_ZBL_LANGUAGE.equals(inner.getKey())){/*8.2*/
}else if(YConstants.AT_ENHANCED_FROM_ZBL_VALUE.equals(inner.getKey())){/*8.3*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_TITLE, inner.getValue()));
}
}
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda.repowebeditor/repository-web-editor-core
private List<YAttribute> removeDocumentTypeAttribute() {
List<YAttribute> yAttributes = new ArrayList<>();
for (YAttribute yAttr : safe(article.getAttributes())) {
if(!yAttr.getKey().equals(CS.DOCUMENT_TYPE)) {
yAttributes.add(yAttr);
}
}
return yAttributes;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* transplantation form RelationStatementBuilder
* @param ya
* @param paos_ref
* @param refno
* @return
*/
private boolean parseReferenceText(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_REFERENCE_TEXT.equals(ya.getKey())){/*3*/
parseReferenceText(ya.getValue(), paos_ref, refno);
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* accomplished
* @param ya
* @param paos_ref
* @param refno
* @param refid
* @return
*/
private boolean parseReferenceId(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_REFERENCE_PARSED_ID_MR.equals(ya.getKey())){/*1.1*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_IS_DOCUMENT, RelConstants.NS_MR_DOCUMENT+ ya.getValue()));
return true;
}else if(YConstants.AT_REFERENCE_PARSED_ID_ZBL.equals(ya.getKey())){/*1.2*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_IS_DOCUMENT, RelConstants.NS_ZBL_DOCUMENT+ ya.getValue()));
return true;
}else if(YConstants.AT_REFERENCE_PARSED_ID_ISBN.equals(ya.getKey())){
paos_ref.add(new PredicateAndObject(RelConstants.RL_HAS_ISBN, RelConstants.NS_ISBN+ ya.getValue()));
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* transplantation form RelationStatementBuilder
* @param ya
* @param paos_ref
* @param refno
* @param sb
* @return
* @throws YaddaException
*/
private boolean parseReferenceText(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno, StringBuffer sb) throws YaddaException {
if(YConstants.AT_REFERENCE_TEXT.equals(ya.getKey())){/*3*/
sb.append(ya.getValue().toString());
paos_ref.add(new PredicateAndObject(RelConstants.RL_TEXT, ya.getValue().toString()));
//further parsing of reference-parsed-text is done in parseReferences() method,
//hence parsing here is not allowed
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.synat/synat-core-services-impl
@Override
public DBObject convert(Collection<YAttribute> source) {
DBObject dbObject = new BasicDBObject();
for(YAttribute attribute : source){
Object attributeValue = getAttributeValue(attribute);
Object object = dbObject.get(attribute.getKey());
attributeValue = processValue(attributeValue, object);
String key = converter.potentiallyEscapeMapKey(attribute.getKey());
dbObject.put(key, attributeValue);
}
return dbObject;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
private void proceedReferenceAuthorZblFingerPrint(YAttribute ya,
LinkedList<PredicateAndObject> pao) {
for(YAttribute inner : ya.getAttributes()){
if(YConstants.AT_ZBL_AUTHOR_FINGERPRINT.equals(inner.getKey()) && !"-".equals(inner.getValue())){/*5.1*/
String zblfingerprint=inner.getValue();
pao.add(new PredicateAndObject(RelConstants.RL_IS_PERSON, RelConstants.NS_ZBL_PERSON + zblfingerprint));
}
}
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
/**
* accomplished
* @param ya
* @param paos_ref
* @param refno
* @param refid
* @return
*/
private boolean parseReferenceId(YAttribute ya, LinkedList<PredicateAndObject> paos_ref, int refno) {
if(YConstants.AT_REFERENCE_PARSED_ID_MR.equals(ya.getKey())){/*1.1*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_IS_DOCUMENT, RelConstants.NS_MR_DOCUMENT+ ya.getValue()));
return true;
}else if(YConstants.AT_REFERENCE_PARSED_ID_ZBL.equals(ya.getKey())){/*1.2*/
paos_ref.add(new PredicateAndObject(RelConstants.RL_IS_DOCUMENT, RelConstants.NS_ZBL_DOCUMENT+ ya.getValue()));
return true;
}else if(YConstants.AT_REFERENCE_PARSED_ID_ISBN.equals(ya.getKey())){
paos_ref.add(new PredicateAndObject(RelConstants.RL_HAS_ISBN, RelConstants.NS_ISBN+ ya.getValue()));
return true;
}else return false;
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
protected List<ViewContact> resolveContacts(final YInstitution personality) {
final List<ViewContact> contacts = new LinkedList<ViewContact>();
final List<String> contactKeys = new ArrayList<String>();
contactKeys.add(YConstants.AT_CONTACT);
contactKeys.add(YConstants.AT_CONTACT_LOCATION);
contactKeys.add(YConstants.AT_CONTACT_URL);
contactKeys.add(YConstants.AT_CONTACT_EMAIL);
contactKeys.add(YConstants.AT_CONTACT_PHONE);
contactKeys.add(YConstants.AT_CONTACT_FAX);
for (final String contactKey : contactKeys) {
final List<YAttribute> ycontacts = personality.getAttributes(contactKey);
if (ycontacts != null) {
for (final YAttribute contact : ycontacts) {
final ViewContact viewContact = new ViewContact(contact.getKey(), detailsFilter.filter(
contact.getValue(), InputType.PLAIN_TEXT));
contacts.add(viewContact);
}
}
}
return contacts;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
@Override
void compare(YElement expected, YElement actual, EvalResult result) {
List<YAttribute> expAttributes = expected.getAttributes();
Map<String, List<String>> actAttMap = new HashMap<String, List<String>>();
for (YAttribute yatt : actual.getAttributes()) {
String key = yatt.getKey();
if (actAttMap.get(key) == null) {
actAttMap.put(key, new ArrayList<String>());
}
actAttMap.get(key).add(yatt.getValue());
}
for (YAttribute yatt : expAttributes) {
String key = yatt.getKey();
if (actAttMap.containsKey(key)) {
if (actAttMap.get(key).contains(yatt.getValue())) {
result.append(key, ResultStatus.RECOGNIZED, 1);
} else {
result.append(key, ResultStatus.FAILED, 1);
}
//actAttMap.remove(key);
} else {
result.append(key, ResultStatus.FAILED, 1);
}
}
for (String key : actAttMap.keySet()) {
result.append(key, ResultStatus.REDUNDANT, 1);
}
}
},
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
private static YAttribute extractOneReferenceTextAttributeScNode(YAttribute ya) {
if(! ll.contains(ya.getKey())) return ya;
for(Part p:ya.getRichValue().toParts()){
if(p instanceof Node){
if("sc".equals(((Node)p).getTag()))
return new YAttribute(ya.getKey(),new YRichText(((Node)p).getParts().get(0).toString()));
}else if(p instanceof Leaf)
return new YAttribute(ya.getKey(),new YRichText(((Leaf)p).toPlainText()));
}
return ya;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
private static YAttribute extractOneReferenceTextAttributeScNode(YAttribute ya) {
if(! ll.contains(ya.getKey())) return ya;
for(Part p:ya.getRichValue().toParts()){
if(p instanceof Node){
if("sc".equals(((Node)p).getTag()))
return new YAttribute(ya.getKey(),new YRichText(((Node)p).getParts().get(0).toString()));
}else if(p instanceof Leaf)
// if(p.toPlainText()!=null && !p.toPlainText().matches("[\\s]+"))
return new YAttribute(ya.getKey(),new YRichText(((Leaf)p).toPlainText()));
}
return ya;
}
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
protected List<ViewContact> resolveContributorContacts(final YContributor contributor,
final IFilteringContext filteringContext) {
final List<ViewContact> contacts = new LinkedList<ViewContact>();
for (final YAttribute contact : contributor.getAttributes()) {
if (contact.getKey().equals(YConstants.AT_AC_CONTACT_EMAIL)) {
final ViewContact viewContact = new ViewContact(YConstants.AT_CONTACT_EMAIL,
filterEmail(contact.getValue(), filteringContext));
contacts.add(viewContact);
} else if (contact.getKey().equals(YConstants.AT_INSTITUTION)) {
for (final YAttribute contact2 : contact.getAttributes()) {
if (contact2.getKey().equals(YConstants.AT_INSTITUTION_MAIL)) {
final ViewContact viewContact = new ViewContact(YConstants.AT_CONTACT_EMAIL,
filterEmail(contact2.getValue(), filteringContext));
contacts.add(viewContact);
} else if (contact2.getKey().equals(YConstants.AT_INSTITUTION_WWW)) {
final ViewContact viewContact = new ViewContact(YConstants.AT_CONTACT_URL,
detailsFilter.filter(contact2.getValue(), InputType.RICH_TEXT, filteringContext));
contacts.add(viewContact);
} else if (contact2.getKey().equals(YConstants.AT_INSTITUTION_PHONE)) {
final ViewContact viewContact = new ViewContact(YConstants.AT_CONTACT_PHONE,
detailsFilter.filter(contact2.getValue(), InputType.RICH_TEXT, filteringContext));
contacts.add(viewContact);
}
}
}
}
return contacts;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
if(YConstants.AT_REFERENCE_PARSED_AUTHOR_FORENAMES.equals(inner.getKey())){/*5.2*/
String tmp = inner.getValue();
fname+=" "+ tmp;
}else if(YConstants.AT_REFERENCE_PARSED_AUTHOR_SURNAME.equals(inner.getKey())){/*5.3*/
sname=inner.getValue();
sname = NameProceeder.unifySurname(sname);
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
private static YElement putRelationReferenceToLeafsIntoNodes(YElement yelement) {
for(YRelation yr : yelement.getRelations()){
for(YAttribute ya : yr.getAttributes()){
if(! ll.contains(ya.getKey()))continue;
removeGivenTag("sc", ya.getRichValue().toParts());
ya.setValue(new YRichText(extractLeafs(removeNodeWithGivenTag("ext-link", ya.getRichValue().toParts()))));
}
}
return yelement;
}
代码示例来源:origin: pl.edu.icm.yadda/yadda-analysis-impl
private static YElement putRelationReferenceToLeafsIntoNodes(YElement yelement) {
for(YRelation yr : yelement.getRelations()){
// LinkedList<YAttribute> lya = new LinkedList<YAttribute>();
for(YAttribute ya : yr.getAttributes()){
if(! ll.contains(ya.getKey()))continue;
removeGivenTag("sc", ya.getRichValue().toParts());
ya.setValue(new YRichText(extractLeafs(removeNodeWithGivenTag("ext-link", ya.getRichValue().toParts()))));
// lya.add(ya);
}
// if(lya.size()>0)yr.setAttributes(lya);
}
return yelement;
}
我们知道有一个“规则”,即不应在Input内部使用FixedUpdate()函数;如果这样做,Input.GetKeyDown()可能无法正常工作,但是使用Input.GetKey()真的错误吗? 假
有谁知道如何通过 GetKeys 函数获取任何按键状态(按下或未按下)?换句话说如何处理这个函数: bool result = isPressed(kVK_LeftArrow); 谢谢。 最佳答案 K
有 Started、Performed 和 Cancelled,但如果我想检测我是否按住了 Gamepad 上的按钮,该怎么办。所以基本上,我如何用新的输入系统将它重写到游戏 handle 上。 pr
这个问题已经有答案了: read key from LocalizedResource.properties programmatically (3 个回答) 已关闭 3 年前。 我有文件 Local
我正在尝试获取 Firebase 数据库中特定 child 的 ID。数据库看起来像这样: Users: - id: user1 - id: user2 - ... 现在我想返回每个用户的ID,
我正在尝试使用子名称下划线蓝色下划线来获取该推送键下划线红色,但我的代码返回产品作为 dataSnapshot.getKey 上的键是代码:代码 Query reference=Firebas
我想要一个 getkey/getchar 函数来从键盘读取一个键。请注意,该程序不在终端窗口中运行,而是通过 linux 的快捷方式执行。 最佳答案 您可以使用 Tkinter 弹出一个窗口,并对 K
我有一个 bukkit 配置文件,如下所示: effected mobs: skeleton: lower hp limit: 0 upper hp limit: 0 zomb
private void searchForK(V value , DictionaryNode node){ if(node != null){ if(((C
我希望读取 Cocoa 中键盘的状态(对于我在 SpriteKit 中构建的游戏)。 NSResponder 肯定会给我按键操作,但我没有收到修饰键按下的事件,如果我按住一个键,然后按另一个键,我将停
为什么“Spring in action 5”中的代码不起作用(keyHolder.getKey() 返回 null,但实体保存在数据库中)? private long savePizzaInfo(P
我使用 keytool 和以下命令生成了一个 keystore : keytool -genkey -alias serverprivate -keystore serverprivate.jks -
DatabaseReference rootRef = FirebaseDatabase.getInstance().getReference(); DatabaseReference use
我正在寻找创建一个方法,该方法将接受String作为参数,然后打印出String相应的HashMap也指。 sensorMappings = new HashMap<>(); sensorMappin
我的数据存储表名为文档,其结构如下: key 、写入操作、ID/名称、html、名称。示例数据为: Key: aglub19hcHBfaWRyDgsSCGRvY3VtZW50GAEM Write Op
我正在运行 AzureClient java sdk。我像这样创建 keyvault 客户端: ApplicationTokenCredentials applicationTokenCredenti
我试图使用 getKey 和 KeySelector 在 FoundationDB 的某个子空间中找到一个键。如果结果存在于子空间中,它会工作得很好。 val key = new Tuple
我正在我的应用程序中实现指纹身份验证。我遇到了在某些设备上无法正常工作并且我的应用程序崩溃的问题。尽管如此,它也适用于某些设备。问题出在这一行 val key = keyStore?.getKey(C
我正在编写一个在控制台窗口中启动的 Microsoft Windows 程序,然后生成一个单独的 gui 窗口以在其中进行一些 directx 渲染。 我试图在焦点位于 directx 窗口时获取键盘
我正在尝试获取“esc”键输入并关闭窗口。我找到了两种方法,第一种是: static void key_callback(GLFWwindow* window, int key, int scanco
我是一名优秀的程序员,十分优秀!