Uses of Class
org.apache.poi.hmef.attribute.TNEFAttribute
-
Packages that use TNEFAttribute Package Description org.apache.poi.hmef org.apache.poi.hmef.attribute -
-
Uses of TNEFAttribute in org.apache.poi.hmef
Methods in org.apache.poi.hmef that return TNEFAttribute Modifier and Type Method Description TNEFAttribute
Attachment. getAttribute(TNEFProperty id)
Return the attachment attribute with the given ID, or null if there isn't one.TNEFAttribute
HMEFMessage. getMessageAttribute(TNEFProperty id)
Return the message attribute with the given ID, or null if there isn't one.Methods in org.apache.poi.hmef that return types with arguments of type TNEFAttribute Modifier and Type Method Description java.util.List<TNEFAttribute>
Attachment. getAttributes()
Returns all HMEF/TNEF attributes of the attachment, such as filename, icon and contentsjava.util.List<TNEFAttribute>
HMEFMessage. getMessageAttributes()
Returns all HMEF/TNEF attributes of the message.Methods in org.apache.poi.hmef with parameters of type TNEFAttribute Modifier and Type Method Description protected void
Attachment. addAttribute(TNEFAttribute attr)
-
Uses of TNEFAttribute in org.apache.poi.hmef.attribute
Subclasses of TNEFAttribute in org.apache.poi.hmef.attribute Modifier and Type Class Description class
TNEFDateAttribute
A Date attribute which applies to aHMEFMessage
or one of itsAttachment
s.class
TNEFMAPIAttribute
A TNEF Attribute holding MAPI Attributes, which applies to aHMEFMessage
or one of itsAttachment
s.class
TNEFStringAttribute
A String attribute which applies to aHMEFMessage
or one of itsAttachment
s.Methods in org.apache.poi.hmef.attribute that return TNEFAttribute Modifier and Type Method Description static TNEFAttribute
TNEFAttribute. create(java.io.InputStream inp)
Creates a new TNEF Attribute by reading data from the stream within aHMEFMessage
Methods in org.apache.poi.hmef.attribute with parameters of type TNEFAttribute Modifier and Type Method Description static java.util.List<MAPIAttribute>
MAPIAttribute. create(TNEFAttribute parent)
Parses a MAPI Properties TNEF Attribute, and returns the list of MAPI Attributes contained within itstatic java.util.Date
TNEFDateAttribute. getAsDate(TNEFAttribute attr)
Returns the Date of a Attribute, converting as appropriatestatic java.lang.String
TNEFStringAttribute. getAsString(TNEFAttribute attr)
Returns the string of a Attribute, converting as appropriate
-