本文整理了Java中org.apache.brooklyn.core.entity.Entities.ancestorsAndSelf()
方法的一些代码示例,展示了Entities.ancestorsAndSelf()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Entities.ancestorsAndSelf()
方法的具体详情如下:
包路径:org.apache.brooklyn.core.entity.Entities
类名称: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));
}
内容来源于网络,如有侵权,请联系作者删除!