public static enum BASE64.Type extends Enum<BASE64.Type>
| 列挙型定数と説明 |
|---|
BASE64
BASE64 用変換表
|
HEX64
16進数を拡張したもの
|
PASSWORD
crypt / password 用変換表 (予定)
|
URL
URL用修正付きBASE64
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static BASE64.Type |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static BASE64.Type[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final BASE64.Type BASE64
public static final BASE64.Type PASSWORD
public static final BASE64.Type URL
public static final BASE64.Type HEX64
public static BASE64.Type[] values()
for(BASE64.Type c: BASE64.Type.values()) System.out.println(c);
public static BASE64.Type valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2024. All rights reserved.