org.apache.brooklyn.core.entity.Entities.ancestorsAndSelf()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(114)

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

Entities.ancestorsAndSelf介绍

[英]Returns the entity, its parent, its parent, and so on.
[中]返回实体、其父实体、其父实体等。

代码示例

代码示例来源:origin: org.apache.brooklyn/brooklyn-core

/**
 * @deprecated since 0.10.0; see {@link #ancestorsAndSelf(Entity)}
 */
@Deprecated
public static Iterable<Entity> ancestors(final Entity root) {
  return ancestorsAndSelf(root);
}

代码示例来源:origin: org.apache.brooklyn/brooklyn-core

@Test
public void testAncestors() throws Exception {
  Asserts.assertEqualsIgnoringOrder(Entities.ancestorsAndSelf(app), ImmutableList.of(app));
  Asserts.assertEqualsIgnoringOrder(Entities.ancestors(app), ImmutableList.of(app));
  Asserts.assertEqualsIgnoringOrder(Entities.ancestorsAndSelf(entity), ImmutableList.of(entity, app));
  Asserts.assertEqualsIgnoringOrder(Entities.ancestors(entity), ImmutableList.of(entity, app));
}

相关文章