public final class ContentDisposition
extends java.lang.Object
修飾子と型 | クラスと説明 |
---|---|
static interface | ContentDisposition.Builder ContentDisposition の可変ビルダー。 |
修飾子と型 | メソッドと説明 |
---|---|
static ContentDisposition.Builder | builder(java.lang.String type) ContentDisposition のビルダーを返します。 |
static ContentDisposition | empty() 空のコンテンツ処理を返します。 |
boolean | equals(java.lang.Object other) |
java.nio.charset.Charset | getCharset() filename * パラメーターで定義された文字セットを返します。定義されていない場合は null を返します。 |
java.time.ZonedDateTime | getCreationDate() 作成日パラメーターの値、または定義されていない場合は null を返します。 |
java.lang.String | getFilename() filename パラメーターの値(または RFC 5987 で定義されているようにデコードされた filename * の値)、または定義されていない場合は null を返します。 |
java.time.ZonedDateTime | getModificationDate() modification-date パラメーターの値、または定義されていない場合は null を返します。 |
java.lang.String | getName() name パラメーターの値、または定義されていない場合は null を返します。 |
java.time.ZonedDateTime | getReadDate() read-date パラメーターの値を返します。定義されていない場合は null を返します。 |
java.lang.Long | getSize() サイズパラメーターの値、または定義されていない場合は null の値を返します。 |
java.lang.String | getType() 定義されていない場合は、インライン、添付ファイル、フォームデータ、 null などの処理型を返します。 |
int | hashCode() |
static ContentDisposition | parse(java.lang.String contentDisposition) RFC 2183 で定義されている Content-Disposition ヘッダー値を解析します。 |
java.lang.String | toString() RFC 2183 で定義されているこのコンテンツの後処理のヘッダー値を返します。 |
@Nullable public java.lang.String getType()
null
などの処理型を返します。@Nullable public java.lang.String getName()
null
を返します。@Nullable public java.lang.String getFilename()
null
を返します。@Nullable public java.nio.charset.Charset getCharset()
null
を返します。@Nullable public java.lang.Long getSize()
null
の値を返します。@Nullable public java.time.ZonedDateTime getCreationDate()
null
を返します。@Nullable public java.time.ZonedDateTime getModificationDate()
null
を返します。@Nullable public java.time.ZonedDateTime getReadDate()
null
を返します。public boolean equals(java.lang.Object other)
java.lang.Object
の equals
public int hashCode()
java.lang.Object
の hashCode
public java.lang.String toString()
java.lang.Object
の toString
parse(String)
public static ContentDisposition.Builder builder(java.lang.String type)
ContentDisposition
のビルダーを返します。type
- インライン、添付ファイル、フォームデータなどの処理型 public static ContentDisposition empty()
public static ContentDisposition parse(java.lang.String contentDisposition)
contentDisposition
- Content-Disposition ヘッダー値 toString()