本文整理了Java中org.jboss.util.id.GUID.equals()
方法的一些代码示例,展示了GUID.equals()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GUID.equals()
方法的具体详情如下:
包路径:org.jboss.util.id.GUID
类名称:GUID
方法名:equals
[英]Check if the given object is equal to this GUID.
A GUID is equal to another GUID if the VMID and UID portions are equal.
[中]检查给定对象是否等于此GUID。
如果VMID和UID部分相等,则GUID等于另一个GUID。
代码示例来源:origin: org.jboss.jbossas/jboss-as-aspects
public boolean equals(Object obj)
{
if (!(obj instanceof DistributedPOJOState)) return false;
DistributedPOJOState pojo = (DistributedPOJOState)obj;
return guid.equals(pojo.guid);
}
代码示例来源:origin: org.jboss.jbossas/jboss-as-server
/**
* Returns wether we are local to the originating container or not.
*
* @return true when we have the same GUID
*/
public boolean isLocal()
{
return invokerID.equals(Invoker.ID);
}
代码示例来源:origin: org.jboss.aop/jboss-aop
private boolean isLocal()
{
return key.getGuid().equals(GUID);
}
代码示例来源:origin: org.jboss.aop/jboss-aop
if(!guid.equals(other.guid))
内容来源于网络,如有侵权,请联系作者删除!