|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
| 上一個類別 下一個類別 | 框架 無框架 | |||||||||
| 摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 | |||||||||
java.lang.Objectjava.security.spec.ECPoint
public class ECPoint
此不可變類別在仿射坐標中表示橢圓曲線 (EC) 上的點。其他坐標系可以擴展此類別,以便在其他坐標中表示此點。
| 欄位摘要 | |
|---|---|
static ECPoint |
POINT_INFINITY
這就將該點定義為無窮大。 |
| 建構子摘要 | |
|---|---|
ECPoint(BigInteger x,
BigInteger y)
根據指定的仿射 x 坐標 x 和仿射 y 坐標 y 創建 ECPoint。 |
|
| 方法摘要 | |
|---|---|
boolean |
equals(Object obj)
比較此橢圓曲線點與指定物件的相等性。 |
BigInteger |
getAffineX()
返回仿射 x 坐標 x。 |
BigInteger |
getAffineY()
返回仿射 y 坐標 y。 |
int |
hashCode()
返回此橢圓曲線點的雜湊碼值。 |
| 從類別 java.lang.Object 繼承的方法 |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| 欄位詳細資訊 |
|---|
public static final ECPoint POINT_INFINITY
| 建構子詳細資訊 |
|---|
public ECPoint(BigInteger x,
BigInteger y)
x 和仿射 y 坐標 y 創建 ECPoint。
x - 仿射 x 坐標。y - 仿射 y 坐標。
NullPointerException - 如果 x 或 y 為 null。| 方法詳細資訊 |
|---|
public BigInteger getAffineX()
x。註:POINT_INFINITY 的仿射 x 坐標為 null。
public BigInteger getAffineY()
y。註:POINT_INFINITY 的仿射 y 坐標為 null 。
public boolean equals(Object obj)
Object 中的 equalsobj - 要比較的物件。
obj 是 ECPoint 的一個實例,並且仿射坐標相比對,則返回 true,否則返回 false。Object.hashCode(),
Hashtablepublic int hashCode()
Object 中的 hashCodeObject.equals(java.lang.Object),
Hashtable
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
| 上一個類別 下一個類別 | 框架 無框架 | |||||||||
| 摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 | |||||||||
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。