com.sun.syndication.feed.synd
インタフェース SyndEnclosure

すべてのスーパーインタフェース:
java.lang.Cloneable, CopyFrom
既知の実装クラスの一覧:
SyndEnclosureImpl

public interface SyndEnclosure
extends java.lang.Cloneable, CopyFrom


メソッドの概要
 long getLength()
          Returns the enclosure length.
 java.lang.String getType()
          Returns the enclosure type.
 java.lang.String getUrl()
          Returns the enclosure URL.
 void setLength(long length)
          Sets the enclosure length.
 void setType(java.lang.String type)
          Sets the enclosure type.
 void setUrl(java.lang.String url)
          Sets the enclosure URL.
 
インタフェース com.sun.syndication.feed.CopyFrom から継承されたメソッド
copyFrom, getInterface
 

メソッドの詳細

getUrl

java.lang.String getUrl()
Returns the enclosure URL.

戻り値:
the enclosure URL, null if none.

setUrl

void setUrl(java.lang.String url)
Sets the enclosure URL.

パラメータ:
url - the enclosure URL to set, null if none.

getLength

long getLength()
Returns the enclosure length.

戻り値:
the enclosure length, null if none.

setLength

void setLength(long length)
Sets the enclosure length.

パラメータ:
length - the enclosure length to set, null if none.

getType

java.lang.String getType()
Returns the enclosure type.

戻り値:
the enclosure type, null if none.

setType

void setType(java.lang.String type)
Sets the enclosure type.

パラメータ:
type - the enclosure type to set, null if none.