| パッケージ | 説明 | 
|---|---|
| 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. ONEBigInteger 定数 1 です。 | 
| static BigInteger | BigInteger. TENBigInteger 定数 10 です。 | 
| static BigInteger | BigInteger. ZEROBigInteger 定数 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-1mod 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-1mod 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値を取得します。 | 
| abstract BigInteger | X509CRLEntry. getSerialNumber()この X509CRLEntry からシリアル番号 userCertificate を取得します。 | 
| BigInteger | X509CertSelector. getSerialNumber()serialNumber 基準値を返します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
| 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 | RSAPrivateCrtKey. getPublicExponent()公開指数を返します。 | 
| BigInteger | RSAPublicKey. 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 | DSAPrivateKeySpec. getG()底  gを返します。 | 
| BigInteger | DSAParameterSpec. getG()底  gを返します。 | 
| BigInteger | DSAPublicKeySpec. getG()底  gを返します。 | 
| BigInteger | RSAPublicKeySpec. getModulus()モジュラスを返します。 | 
| BigInteger | RSAPrivateKeySpec. getModulus()モジュラスを返します。 | 
| BigInteger | ECParameterSpec. getOrder()ジェネレータの位数を返します。 | 
| BigInteger | DSAPrivateKeySpec. getP()素数  pを返します。 | 
| BigInteger | DSAParameterSpec. getP()素数  pを返します。 | 
| BigInteger | DSAPublicKeySpec. getP()素数  pを返します。 | 
| BigInteger | ECFieldFp. 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 | RSAPublicKeySpec. getPublicExponent()公開指数を返します。 | 
| BigInteger | RSAKeyGenParameterSpec. getPublicExponent()公開指数値を返します。 | 
| BigInteger | RSAPrivateCrtKeySpec. getPublicExponent()公開指数を返します。 | 
| BigInteger | DSAPrivateKeySpec. getQ()サブ素数  qを返します。 | 
| BigInteger | DSAParameterSpec. 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 | DHPrivateKeySpec. getG()ベースジェネレータ  gを返します。 | 
| BigInteger | DHParameterSpec. getG()ベースジェネレータ  gを返します。 | 
| BigInteger | DHPublicKeySpec. getG()ベースジェネレータ  gを返します。 | 
| BigInteger | DHPrivateKeySpec. getP()素数モジュラス  pを返します。 | 
| BigInteger | DHParameterSpec. getP()素数モジュラス  pを返します。 | 
| BigInteger | DHPublicKeySpec. 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. BIGINTEGERJava クラス名が  java.math.BigIntegerである値を記述するSimpleTypeインスタンスです。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
| abstract BigInteger | X509Certificate. getSerialNumber()証明書から  serialNumber値を取得します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
| static BigInteger | DatatypeConverter. parseInteger(String lexicalXSDInteger)
文字列引数を BigInteger 値に変換します。 | 
| BigInteger | DatatypeConverterInterface. parseInteger(String lexicalXSDInteger)
文字列引数を BigInteger 値に変換します。 | 
| 修飾子と型 | メソッドと説明 | 
|---|---|
| static String | DatatypeConverter. printInteger(BigInteger val)
BigInteger 値を文字列に変換します。 | 
| String | DatatypeConverterInterface. 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, 2013, Oracle and/or its affiliates. All rights reserved.