パッケージ | 説明 |
---|---|
com.google.zxing |
This is a small portion of zxing, including only what's required to generate QR codes.
|
com.google.zxing.qrcode | |
com.google.zxing.qrcode.encoder |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
static EncodeHintType |
EncodeHintType.valueOf(java.lang.String name) |
指定した名前を持つこの型の列挙型定数を返します。
文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に
一致している必要があります。(余分な空白文字を含めることは
できません。)
|
static EncodeHintType[] |
EncodeHintType.values() |
この列挙型の定数を含む配列を宣言されている順序で返します。
このメソッドは次のようにして定数を反復するために
使用できます:
for (EncodeHintType c : EncodeHintType.values()) System.out.println(c); |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
BitMatrix |
Writer.encode(java.lang.String contents,
BarcodeFormat format,
int width,
int height,
java.util.Map<EncodeHintType,?> hints) |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
BitMatrix |
QRCodeWriter.encode(java.lang.String contents,
BarcodeFormat format,
int width,
int height,
java.util.Map<EncodeHintType,?> hints) |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
static QRCode |
Encoder.encode(java.lang.String content,
ErrorCorrectionLevel ecLevel,
java.util.Map<EncodeHintType,?> hints) |