| パッケージ | 説明 | 
|---|---|
| java.awt.image | 
 イメージを作成および修正するためのクラスを提供します。 
 | 
| java.math | 
 任意精度の整数演算( 
BigInteger)および任意精度の10進演算(BigDecimal)を行うクラスを提供します。 | 
| java.security.cert | 
 証明書、証明書の取消しリスト(CRL)、証明書パスを解析および管理するためのクラスとインタフェースを提供します。 
 | 
| java.security.interfaces | 
 RSA Laboratory Technical Note PKCS#1で定義されているRSA (Rivest, Shamir and Adleman AsymmetricCipher algorithm)鍵と、NISTのFIPS-186で定義されているDSA (Digital Signature Algorithm)鍵を生成するためのインタフェースを提供します。 
 | 
| java.security.spec | 
 鍵仕様およびアルゴリズム・パラメータ仕様のクラスおよびインタフェースを提供します。 
 | 
| java.util | 
 コレクション・フレームワーク、レガシー・コレクション・クラス、イベント・モデル、日時機能、国際化、およびさまざまなユーティリティ・クラス(StringTokenizer、乱数ジェネレータ、およびビット配列)が含まれています。 
 | 
| javax.crypto.interfaces | 
 RSA LaboratoriesのPKCS#3で定義されているDiffie-Hellman鍵のインタフェースを提供します。 
 | 
| javax.crypto.spec | 
 鍵仕様およびアルゴリズム・パラメータ仕様のクラスおよびインタフェースを提供します。 
 | 
| javax.management.openmbean | 
 公開データ型とOpen MBean記述子クラスを提供します。 
 | 
| javax.security.cert | 
 公開鍵証明書用のクラスを提供します。 
 | 
| javax.xml.bind | 
 
        非整列化、整列化および検証機能を含む実行時バインディング・フレームワークをクライアント・アプリケーションに提供します。 
 | 
| javax.xml.crypto.dsig.keyinfo | 
KeyInfoの要素や構造体の解析や処理を行うためのクラス。 | 
| javax.xml.datatype | 
 XML/Javaの型マッピングです。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
IndexColorModel.getValidPixels()
カラー・マップの有効/無効ピクセルを示す 
BigIntegerを返します。 | 
| コンストラクタと説明 | 
|---|
IndexColorModel(int bits, int size, int[] cmap, int start, int transferType, BigInteger validBits)
intの配列からIndexColorModelを構築します。ただし、各intは、デフォルトのRGBカラー・モデル形式の赤、緑、青の色成分、および任意のアルファ成分からなります。 | 
| 修飾子と型 | フィールドと説明 | 
|---|---|
static BigInteger | 
BigInteger.ONE
BigInteger定数1です。 
 | 
static BigInteger | 
BigInteger.TEN
BigInteger定数10です。 
 | 
static BigInteger | 
BigInteger.ZERO
BigInteger定数0です。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
BigInteger.abs()
値がこのBigIntegerの絶対値であるBigIntegerを返します。 
 | 
BigInteger | 
BigInteger.add(BigInteger val)
値が 
(this+val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.and(BigInteger val)
値が 
(this & val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.andNot(BigInteger val)
値が 
(this & ~val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.clearBit(int n)
値がこのBigIntegerに等しいBigIntegerを、指定されたビットをクリアして返します。 
 | 
BigInteger | 
BigInteger.divide(BigInteger val)
値が 
(this /val)であるBigIntegerを返します。 | 
BigInteger[] | 
BigInteger.divideAndRemainder(BigInteger val)
(this /val)そして(this % val)と続く、2つのBigIntegerの配列を返します。 | 
BigInteger | 
BigInteger.flipBit(int n)
値がこのBigIntegerに等しいBigIntegerを、指定されたビットを反転させて返します。 
 | 
BigInteger | 
BigInteger.gcd(BigInteger val)
値が 
abs(this)とabs(val)の最大公約数であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.max(BigInteger val)
このBigIntegerと 
valの最大値を返します。 | 
BigInteger | 
BigInteger.min(BigInteger val)
このBigIntegerと 
valの最小値を返します。 | 
BigInteger | 
BigInteger.mod(BigInteger m)
値が 
(this mod m)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.modInverse(BigInteger m)
値が 
(this-1 mod m)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.modPow(BigInteger exponent, BigInteger m)
値が(thisexponent mod m)のBigIntegerを返します。 
 | 
BigInteger | 
BigInteger.multiply(BigInteger val)
値が 
(this * val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.negate()
値が 
(-this)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.nextProbablePrime()
この 
BigIntegerより大きい最初の整数(おそらく素数)を返します。 | 
BigInteger | 
BigInteger.not()
値が 
(~this)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.or(BigInteger val)
値が 
(this|val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.pow(int exponent)
値が(thisexponent)のBigIntegerを返します。 
 | 
static BigInteger | 
BigInteger.probablePrime(int bitLength, Random rnd)
指定されたビット長で正のBigInteger (おそらく素数)を返します。 
 | 
BigInteger | 
BigInteger.remainder(BigInteger val)
値が 
(this % val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.setBit(int n)
値がこのBigIntegerに等しいBigIntegerを、指定されたビットを設定して返します。 
 | 
BigInteger | 
BigInteger.shiftLeft(int n)
値が 
(this << n)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.shiftRight(int n)
値が 
(this>> n)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.subtract(BigInteger val)
値が 
(this - val)であるBigIntegerを返します。 | 
BigInteger | 
BigDecimal.toBigInteger()
この 
BigDecimalをBigIntegerに変換します。 | 
BigInteger | 
BigDecimal.toBigIntegerExact()
この 
BigDecimalをBigIntegerに変換し、失われた情報がないかどうかを確認します。 | 
BigInteger | 
BigDecimal.unscaledValue()
値がこの 
BigDecimalのスケールなしの値であるBigIntegerを返します。 | 
static BigInteger | 
BigInteger.valueOf(long val)
値が指定された 
longの値と等しいBigIntegerを返します。 | 
BigInteger | 
BigInteger.xor(BigInteger val)
値が 
(this^val)であるBigIntegerを返します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
BigInteger.add(BigInteger val)
値が 
(this+val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.and(BigInteger val)
値が 
(this & val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.andNot(BigInteger val)
値が 
(this & ~val)であるBigIntegerを返します。 | 
int | 
BigInteger.compareTo(BigInteger val)
このBigIntegerを指定されたBigIntegerと比較します。 
 | 
BigInteger | 
BigInteger.divide(BigInteger val)
値が 
(this /val)であるBigIntegerを返します。 | 
BigInteger[] | 
BigInteger.divideAndRemainder(BigInteger val)
(this /val)そして(this % val)と続く、2つのBigIntegerの配列を返します。 | 
BigInteger | 
BigInteger.gcd(BigInteger val)
値が 
abs(this)とabs(val)の最大公約数であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.max(BigInteger val)
このBigIntegerと 
valの最大値を返します。 | 
BigInteger | 
BigInteger.min(BigInteger val)
このBigIntegerと 
valの最小値を返します。 | 
BigInteger | 
BigInteger.mod(BigInteger m)
値が 
(this mod m)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.modInverse(BigInteger m)
値が 
(this-1 mod m)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.modPow(BigInteger exponent, BigInteger m)
値が(thisexponent mod m)のBigIntegerを返します。 
 | 
BigInteger | 
BigInteger.multiply(BigInteger val)
値が 
(this * val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.or(BigInteger val)
値が 
(this|val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.remainder(BigInteger val)
値が 
(this % val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.subtract(BigInteger val)
値が 
(this - val)であるBigIntegerを返します。 | 
BigInteger | 
BigInteger.xor(BigInteger val)
値が 
(this^val)であるBigIntegerを返します。 | 
| コンストラクタと説明 | 
|---|
BigDecimal(BigInteger val)
BigIntegerをBigDecimalに変換します。 | 
BigDecimal(BigInteger unscaledVal, int scale)
BigIntegerのスケールなしの値とintのスケールをBigDecimalに変換します。 | 
BigDecimal(BigInteger unscaledVal, int scale, MathContext mc)
コンテキスト設定に従った丸めを使用して、 
BigIntegerのスケールなしの値とintのスケールをBigDecimalに変換します。 | 
BigDecimal(BigInteger val, MathContext mc)
コンテキスト設定に従った丸めを使用して、 
BigIntegerをBigDecimalに変換します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
X509CRLSelector.getMaxCRL()
maxCRLNumber基準値を返します。 
 | 
BigInteger | 
X509CRLSelector.getMinCRL()
minCRLNumber基準値を返します。 
 | 
abstract BigInteger | 
X509Certificate.getSerialNumber()
証明書から 
serialNumber値を取得します。 | 
BigInteger | 
X509CertSelector.getSerialNumber()
serialNumber基準値を返します。 
 | 
abstract BigInteger | 
X509CRLEntry.getSerialNumber()
このX509CRLEntryからシリアル番号userCertificateを取得します。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
abstract X509CRLEntry | 
X509CRL.getRevokedCertificate(BigInteger serialNumber)
指定された証明書のserialNumberを持つCRLエントリを取得します(ある場合)。 
 | 
void | 
X509CRLSelector.setMaxCRLNumber(BigInteger maxCRL)
maxCRLNumber基準値を設定します。 
 | 
void | 
X509CRLSelector.setMinCRLNumber(BigInteger minCRL)
minCRLNumber基準値を設定します。 
 | 
void | 
X509CertSelector.setSerialNumber(BigInteger serial)
serialNumber基準値を設定します。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
RSAMultiPrimePrivateCrtKey.getCrtCoefficient()
crtCoefficientを返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getCrtCoefficient()
crtCoefficientを返します。 
 | 
BigInteger | 
DSAParams.getG()
底 
gを返します。 | 
BigInteger | 
RSAKey.getModulus()
モジュラスを返します。 
 | 
BigInteger | 
DSAParams.getP()
素数 
pを返します。 | 
BigInteger | 
RSAMultiPrimePrivateCrtKey.getPrimeExponentP()
primeExponentPを返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getPrimeExponentP()
primeExponentPを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKey.getPrimeExponentQ()
primeExponentQを返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getPrimeExponentQ()
primeExponentQを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKey.getPrimeP()
primePを返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getPrimeP()
primePを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKey.getPrimeQ()
primeQを返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getPrimeQ()
primeQを返します。 
 | 
BigInteger | 
RSAPrivateKey.getPrivateExponent()
非公開指数を返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKey.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
RSAPublicKey.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
RSAPrivateCrtKey.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
DSAParams.getQ()
サブ素数 
qを返します。 | 
BigInteger | 
ECPrivateKey.getS()
非公開値Sを返します。 
 | 
BigInteger | 
DSAPrivateKey.getX()
非公開鍵の値 
xを返します。 | 
BigInteger | 
DSAPublicKey.getY()
公開鍵の値 
yを返します。 | 
| 修飾子と型 | フィールドと説明 | 
|---|---|
static BigInteger | 
RSAKeyGenParameterSpec.F0
公開指数値F0 = 3。 
 | 
static BigInteger | 
RSAKeyGenParameterSpec.F4
公開指数値F4 = 65537。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
EllipticCurve.getA()
楕円曲線の第1係数 
aを返します。 | 
BigInteger | 
ECPoint.getAffineX()
アフィンx座標 
xを返します。 | 
BigInteger | 
ECPoint.getAffineY()
アフィンy座標 
yを返します。 | 
BigInteger | 
EllipticCurve.getB()
楕円曲線の第2係数 
bを返します。 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getCrtCoefficient()
crtCoefficientを返します。 
 | 
BigInteger | 
RSAOtherPrimeInfo.getCrtCoefficient()
素数のcrtCoefficientを返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getCrtCoefficient()
crtCoefficientを返します。 
 | 
BigInteger | 
RSAOtherPrimeInfo.getExponent()
素数の指数を返します。 
 | 
BigInteger | 
DSAParameterSpec.getG()
底 
gを返します。 | 
BigInteger | 
DSAPrivateKeySpec.getG()
底 
gを返します。 | 
BigInteger | 
DSAPublicKeySpec.getG()
底 
gを返します。 | 
BigInteger | 
RSAPublicKeySpec.getModulus()
モジュラスを返します。 
 | 
BigInteger | 
RSAPrivateKeySpec.getModulus()
モジュラスを返します。 
 | 
BigInteger | 
ECParameterSpec.getOrder()
ジェネレータの位数を返します。 
 | 
BigInteger | 
DSAParameterSpec.getP()
素数 
pを返します。 | 
BigInteger | 
DSAPrivateKeySpec.getP()
素数 
pを返します。 | 
BigInteger | 
ECFieldFp.getP()
この素数位数の有限体の素数 
pを返します。 | 
BigInteger | 
DSAPublicKeySpec.getP()
素数 
pを返します。 | 
BigInteger | 
RSAOtherPrimeInfo.getPrime()
素数を返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getPrimeExponentP()
primeExponentPを返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getPrimeExponentP()
primeExponentPを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getPrimeExponentQ()
primeExponentQを返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getPrimeExponentQ()
primeExponentQを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getPrimeP()
primePを返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getPrimeP()
primePを返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getPrimeQ()
primeQを返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getPrimeQ()
primeQを返します。 
 | 
BigInteger | 
RSAPrivateKeySpec.getPrivateExponent()
非公開指数を返します。 
 | 
BigInteger | 
RSAMultiPrimePrivateCrtKeySpec.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
RSAKeyGenParameterSpec.getPublicExponent()
公開指数値を返します。 
 | 
BigInteger | 
RSAPublicKeySpec.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
RSAPrivateCrtKeySpec.getPublicExponent()
公開指数を返します。 
 | 
BigInteger | 
DSAParameterSpec.getQ()
サブ素数 
qを返します。 | 
BigInteger | 
DSAPrivateKeySpec.getQ()
サブ素数 
qを返します。 | 
BigInteger | 
DSAPublicKeySpec.getQ()
サブ素数 
qを返します。 | 
BigInteger | 
ECFieldF2m.getReductionPolynomial()
多項式基底の場合はi番目のビットが既約多項式のi番目の係数に対応するようなBigIntegerを返し、標準基底の場合はnullを返します。 
 | 
BigInteger | 
ECPrivateKeySpec.getS()
非公開値Sを返します。 
 | 
BigInteger | 
DSAPrivateKeySpec.getX()
非公開鍵 
xを返します。 | 
BigInteger | 
DSAPublicKeySpec.getY()
公開鍵 
yを返します。 | 
| コンストラクタと説明 | 
|---|
DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)
指定されたパラメータ値を使って新しいDSAParameterSpecを作成します。 
 | 
DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)
指定されたパラメータ値を使って新しいDSAPrivateKeySpecを作成します。 
 | 
DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g)
指定されたパラメータ値を使って新しいDSAPublicKeySpecを作成します。 
 | 
ECFieldF2m(int m, BigInteger rp)
楕円曲線の標数2の有限体(要素数2^ 
m)を、多項式基底(polynomial basis)で作成します。 | 
ECFieldFp(BigInteger p)
指定された素数 
pを使用して楕円曲線の素数位数の有限体を作成します。 | 
ECParameterSpec(EllipticCurve curve, ECPoint g, BigInteger n, int h)
指定された値に基づいて楕円曲線ドメイン・パラメータを作成します。 
 | 
ECPoint(BigInteger x, BigInteger y)
指定されたアフィンx座標 
xとアフィンy座標yからECPointを作成します。 | 
ECPrivateKeySpec(BigInteger s, ECParameterSpec params)
指定されたパラメータ値を使ってECPrivateKeySpecを作成します。 
 | 
EllipticCurve(ECField field, BigInteger a, BigInteger b)
指定された楕円体 
fieldと係数a、bを使って楕円曲線を作成します。 | 
EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed)
指定された楕円体 
field、係数a、b、および曲線生成用seedを使って楕円曲線を作成します。 | 
RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)
指定されたキー・サイズおよび公開指数値から新しい 
RSAParameterSpecオブジェクトを構築します。 | 
RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo)
PKCS#1 v2.1に定義されたmodulus、publicExponent、privateExponent、primeP、primeQ、primeExponentP、primeExponentQ、crtCoefficient、およびotherPrimeInfoを指定し、新しい 
RSAMultiPrimePrivateCrtKeySpecを作成します。 | 
RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient)
PKCS#1に定義されたprime、primeExponent、crtCoefficientを指定し、新しい 
RSAOtherPrimeInfoを作成します。 | 
RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient)
PKCS#1に定義されたmodulus、publicExponent、privateExponent、primeP、primeQ、primeExponentP、primeExponentQ、およびcrtCoefficientを指定し、新しい 
RSAPrivateCrtKeySpecを作成します。 | 
RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)
新しいRSAPrivateKeySpecを作成します。 
 | 
RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)
新しいRSAPublicKeySpecを作成します。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
Scanner.nextBigInteger()
入力の次のトークンを 
BigIntegerとしてスキャンします。 | 
BigInteger | 
Scanner.nextBigInteger(int radix)
入力の次のトークンを 
BigIntegerとしてスキャンします。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
DHPrivateKey.getX()
非公開値 
xを返します。 | 
BigInteger | 
DHPublicKey.getY()
公開値 
yを返します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
DHParameterSpec.getG()
ベース・ジェネレータ 
gを返します。 | 
BigInteger | 
DHPublicKeySpec.getG()
ベース・ジェネレータ 
gを返します。 | 
BigInteger | 
DHPrivateKeySpec.getG()
ベース・ジェネレータ 
gを返します。 | 
BigInteger | 
DHParameterSpec.getP()
素数モジュラス 
pを返します。 | 
BigInteger | 
DHPublicKeySpec.getP()
素数モジュラス 
pを返します。 | 
BigInteger | 
DHPrivateKeySpec.getP()
素数モジュラス 
pを返します。 | 
BigInteger | 
DHPrivateKeySpec.getX()
非公開値 
xを返します。 | 
BigInteger | 
DHPublicKeySpec.getY()
公開値 
yを返します。 | 
| コンストラクタと説明 | 
|---|
DHParameterSpec(BigInteger p, BigInteger g)
素数モジュラス 
pおよびベース・ジェネレータgを使用して、Diffie-Hellmanのパラメータ・セットを構築します。 | 
DHParameterSpec(BigInteger p, BigInteger g, int l)
素数モジュラス 
p、ベース・ジェネレータg、およびランダム指数(非公開値)のビット単位のサイズlを使用して、Diffie-Hellmanのパラメータ・セットを構築します。 | 
DHPrivateKeySpec(BigInteger x, BigInteger p, BigInteger g)
非公開値 
x、素数モジュラスp、およびベース・ジェネレータgをとるコンストラクタです。 | 
DHPublicKeySpec(BigInteger y, BigInteger p, BigInteger g)
公開値 
y、素数モジュラスp、およびベース・ジェネレータgをとるコンストラクタです。 | 
| 修飾子と型 | フィールドと説明 | 
|---|---|
static SimpleType<BigInteger> | 
SimpleType.BIGINTEGER
Javaクラス名が 
java.math.BigIntegerである値を記述するSimpleTypeインスタンスです。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
abstract BigInteger | 
X509Certificate.getSerialNumber()
証明書から 
serialNumber値を取得します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
DatatypeConverterInterface.parseInteger(String lexicalXSDInteger)
 文字列引数をBigInteger値に変換します。 
 | 
static BigInteger | 
DatatypeConverter.parseInteger(String lexicalXSDInteger)
 文字列引数をBigInteger値に変換します。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
String | 
DatatypeConverterInterface.printInteger(BigInteger val)
 BigInteger値を文字列に変換します。 
 | 
static String | 
DatatypeConverter.printInteger(BigInteger val)
 BigInteger値を文字列に変換します。 
 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
BigInteger | 
X509IssuerSerial.getSerialNumber()
この 
X509IssuerSerialのシリアル番号を返します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
abstract X509IssuerSerial | 
KeyInfoFactory.newX509IssuerSerial(String issuerName, BigInteger serialNumber)
指定したX.500発行者識別名およびシリアル番号から 
X509IssuerSerialを作成します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
abstract BigInteger | 
XMLGregorianCalendar.getEon()
yearのXML Schema 1.0 dataTimeデータ型フィールドの上位コンポーネントを返します。 | 
abstract BigInteger | 
XMLGregorianCalendar.getEonAndYear()
yearのXML Schema 1.0 dateTimeデータ型フィールドを返します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
abstract Duration | 
DatatypeFactory.newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds)
DurationをisPositive、年、月、日、時間、分、秒で指定するDurationの新しいインスタンスを取得します。 | 
Duration | 
DatatypeFactory.newDurationDayTime(boolean isPositive, BigInteger day, BigInteger hour, BigInteger minute, BigInteger second)
「XQuery 1.0 and XPath 2.0 Data Model, xdt:dayTimeDuration」で定義された 
day、hour、minute、およびsecondを使用して、xdt:dayTimeDuration型のDurationを作成します。 | 
Duration | 
DatatypeFactory.newDurationYearMonth(boolean isPositive, BigInteger year, BigInteger month)
「XQuery 1.0 and XPath 2.0 Data Model, xdt:yearMonthDuration」で定義された 
yearおよびmonthを使用して、xdt:yearMonthDuration型のDurationを作成します。 | 
abstract XMLGregorianCalendar | 
DatatypeFactory.newXMLGregorianCalendar(BigInteger year, int month, int day, int hour, int minute, int second, BigDecimal fractionalSecond, int timezone)
W3C XML Schema 1.0 recommendationでxsd:dateTimeおよび関連するビルトイン・データ型に許可されている完全な値空間を可能にするコンストラクタです。 
 | 
abstract void | 
XMLGregorianCalendar.setYear(BigInteger year)
XSD  
dateTime年フィールドの下位および上位コンポーネントを設定します。 | 
 バグまたは機能を送信 
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
 Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.