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)
obj - 要比较的对象。 
     obj 是 ECPoint 的一个实例,并且仿射坐标相匹配,则返回 true,否则返回 false。
     Object.hashCode(), 
      Hashtable
     public int hashCode()
Object.equals(java.lang.Object), 
      Hashtable