gpt4 book ai didi

org.jetbrains.yaml.psi.YAMLMapping.getKeyValues()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 13:14:32 29 4
gpt4 key购买 nike

本文整理了Java中org.jetbrains.yaml.psi.YAMLMapping.getKeyValues()方法的一些代码示例,展示了YAMLMapping.getKeyValues()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLMapping.getKeyValues()方法的具体详情如下:
包路径:org.jetbrains.yaml.psi.YAMLMapping
类名称:YAMLMapping
方法名:getKeyValues

YAMLMapping.getKeyValues介绍

暂无

代码示例

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

/**
 *  Simplify getting of array psi elements in array or sequence context
 *
 * arguments: [@foo]
 * arguments:
 *   - @foo
 *
 * TODO: can be handled nice know because on new yaml plugin
 */
@Nullable
public static List<PsiElement> getYamlArrayOnSequenceOrArrayElements(@NotNull YAMLCompoundValue yamlCompoundValue) {
  if (yamlCompoundValue instanceof YAMLSequence) {
    return new ArrayList<>(((YAMLSequence) yamlCompoundValue).getItems());
  }
  if (yamlCompoundValue instanceof YAMLMapping) {
    return new ArrayList<>(((YAMLMapping) yamlCompoundValue).getKeyValues());
  }
  return null;
}

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

@NotNull
public static Collection<YAMLKeyValue> getTopLevelKeyValues(@NotNull YAMLFile yamlFile) {
  YAMLDocument yamlDocument = PsiTreeUtil.getChildOfType(yamlFile, YAMLDocument.class);
  if(yamlDocument == null) {
    return Collections.emptyList();
  }
  YAMLValue topLevelValue = yamlDocument.getTopLevelValue();
  if(!(topLevelValue instanceof YAMLMapping)) {
    return Collections.emptyList();
  }
  return ((YAMLMapping) topLevelValue).getKeyValues();
}

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

/**
 * Visit all children key values of a parent key value
 */
private static void visitNextKeyValues(@NotNull YAMLKeyValue yamlKeyValue, @NotNull Consumer<YAMLKeyValue> consumer) {
  List<YAMLPsiElement> yamlElements = yamlKeyValue.getYAMLElements();
  // @TODO: multiple?
  if(yamlElements.size() != 1) {
    return;
  }
  YAMLPsiElement next = yamlElements.iterator().next();
  if(!(next instanceof YAMLMapping)) {
    return;
  }
  for (YAMLKeyValue keyValue : ((YAMLMapping) next).getKeyValues()) {
    consumer.consume(keyValue);
  }
}

代码示例来源:origin: zalando/intellij-swagger

private Optional<PsiElement> addProperty(YAMLMapping yamlMapping, YAMLKeyValue yamlKeyValue) {
 final List<YAMLKeyValue> keyValues = Lists.newArrayList(yamlMapping.getKeyValues());
 return Optional.ofNullable(ContainerUtil.getLastItem(keyValues))
   .map(
     lastKeyValue -> {
      final PsiElement addedKeyValue = yamlMapping.addAfter(yamlKeyValue, lastKeyValue);
      yamlMapping.addBefore(
        new YAMLElementGenerator(yamlMapping.getProject()).createEol(), addedKeyValue);
      return addedKeyValue;
     });
}

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

for (YAMLKeyValue yamlKey : ((YAMLMapping) topLevelValue).getKeyValues()) {
  String keyText = yamlKey.getKeyText();
  if(StringUtils.isBlank(keyText)) {

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

Collection<YAMLKeyValue> keyValues = ((YAMLMapping) topLevelValue).getKeyValues();
if(keyValues.size() > 0) {
  for(YAMLKeyValue yamlKeyValue: EntityHelper.getYamlModelFieldKeyValues(keyValues.iterator().next()).values()) {

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

PsiElement yamlKeyValueLastChild = yamlKeyValue.getLastChild();
if (yamlKeyValueLastChild instanceof YAMLMapping) {
  for (YAMLKeyValue keyValue : ((YAMLMapping) yamlKeyValueLastChild).getKeyValues()) {
    visitEnvironmentSquenceItems(consumer, keyValue);

代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin

/**
 * Try to find a valid indent value, which are spaces which we need to fill
 */
public static int getIndentSpaceForFile(@NotNull YAMLFile yamlFile) {
  List<YAMLDocument> documents = yamlFile.getDocuments();
  YAMLMapping mapping = ObjectUtils.tryCast(documents.get(0).getTopLevelValue(), YAMLMapping.class);
  if(mapping != null) {
    // first first INDENT element in mapping
    PsiElementPattern.Capture<PsiElement> pattern = PlatformPatterns
      .psiElement(YAMLTokenTypes.INDENT)
      .with(new PsiElementPatternCondition());
    for (YAMLPsiElement yamlPsiElement : mapping.getKeyValues()) {
      // get first value
      PsiElement firstChild = yamlPsiElement.getFirstChild();
      if(firstChild == null) {
        continue;
      }
      // first valid INDENT
      PsiElement nextSiblingOfType = PsiElementUtils.getNextSiblingOfType(firstChild, pattern);
      if(nextSiblingOfType != null && nextSiblingOfType.getTextLength() > 0) {
        return nextSiblingOfType.getTextLength();
      }
    }
  }
  // default value
  return 4;
}

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com