- java.lang.Object
-
- javax.activation.MimeTypeParameterList
-
-
Constructor Summary
Constructors Constructor and Description MimeTypeParameterList()
Default constructor.MimeTypeParameterList(String parameterList)
Constructs a new MimeTypeParameterList with the passed in data.
-
Method Summary
Methods Modifier and Type Method and Description String
get(String name)
Retrieve the value associated with the given name, or null if there is no current association.Enumeration
getNames()
Retrieve an enumeration of all the names in this list.boolean
isEmpty()
Determine whether or not this list is empty.protected void
parse(String parameterList)
A routine for parsing the parameter list out of a String.void
remove(String name)
Remove any value associated with the given name.void
set(String name, String value)
Set the value to be associated with the given name, replacing any previous association.int
size()
Return the number of name-value pairs in this list.String
toString()
Return a string representation of this object.
-
-
-
Constructor Detail
-
MimeTypeParameterList
public MimeTypeParameterList()
Default constructor.
-
MimeTypeParameterList
public MimeTypeParameterList(String parameterList) throws MimeTypeParseException
Constructs a new MimeTypeParameterList with the passed in data.- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.- Throws:
MimeTypeParseException
-
-
Method Detail
-
parse
protected void parse(String parameterList) throws MimeTypeParseException
A routine for parsing the parameter list out of a String.- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.- Throws:
MimeTypeParseException
-
size
public int size()
Return the number of name-value pairs in this list.- Returns:
- the number of parameters
-
isEmpty
public boolean isEmpty()
Determine whether or not this list is empty.- Returns:
- true if there are no parameters
-
get
public String get(String name)
Retrieve the value associated with the given name, or null if there is no current association.- Parameters:
name
- the parameter name- Returns:
- the parameter's value
-
set
public void set(String name, String value)
Set the value to be associated with the given name, replacing any previous association.- Parameters:
name
- the parameter namevalue
- the parameter's value
-
remove
public void remove(String name)
Remove any value associated with the given name.- Parameters:
name
- the parameter name
-
getNames
public Enumeration getNames()
Retrieve an enumeration of all the names in this list.- Returns:
- an enumeration of all parameter names
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/11/2024 14:10:15 Cette version de la page est en cache (à la date du 22/11/2024 14:10:15) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/activation/mimetypeparameterlist.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.