Searched refs:primaryType (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.java45 private String primaryType; // primary type field in class:ContentType
57 * @param primaryType primary type
61 public ContentType(String primaryType, String subType, argument
63 this.primaryType = primaryType;
72 * is parsed into its constituents: primaryType, subType
86 primaryType = tk.getValue();
106 return new ContentType(primaryType,subType,list.copy());
114 return primaryType;
128 * the primaryType, th
163 setPrimaryType(String primaryType) argument
[all...]
/openjdk10/jaxws/src/java.activation/share/classes/javax/activation/
H A DMimeType.java39 private String primaryType; field in class:MimeType
52 primaryType = "application";
79 primaryType = primary.toLowerCase(Locale.ENGLISH);
110 primaryType = rawdata.substring(0, slashIndex).trim().
117 primaryType = rawdata.substring(0, slashIndex).trim().
131 if (!isValidToken(primaryType))
145 return primaryType;
157 if (!isValidToken(primaryType))
159 primaryType = primary.toLowerCase(Locale.ENGLISH);
239 return primaryType
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DContentType.java46 private String primaryType; // primary type field in class:ContentType
52 * is parsed into its constituents: primaryType, subType
66 primaryType = tk.getValue();
91 return primaryType;
105 * the primaryType, the '/' character and the secondaryType.
110 return primaryType + '/' + subType;
H A DXmlDataContentHandler.java142 final String primaryType = ct.getPrimaryType();
144 (primaryType.equalsIgnoreCase("text") || primaryType.equalsIgnoreCase("application"));
/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DKeyStoreDelegator.java48 private String primaryType; // the primary keystore's type field in class:KeyStoreDelegator
59 String primaryType,
70 this.primaryType = primaryType;
75 this.primaryType = primaryType;
82 primaryType + " and " + secondaryType + " keystore types");
205 type = primaryType;
221 type = primaryType;
247 primaryType
58 KeyStoreDelegator( String primaryType, Class<? extends KeyStoreSpi> primaryKeyStore, String secondaryType, Class<? extends KeyStoreSpi> secondaryKeyStore) argument
[all...]
/openjdk10/jdk/src/java.datatransfer/share/classes/java/awt/datatransfer/
H A DMimeType.java95 primaryType = primary.toLowerCase(Locale.ENGLISH);
115 code += primaryType.hashCode();
135 ((this.primaryType.equals(that.primaryType)) &&
159 primaryType = rawdata.substring(0,slashIndex).
166 primaryType = rawdata.substring(0, slashIndex).
181 if(!isValidToken(primaryType)) {
195 return primaryType;
250 return primaryType + "/" + subType;
266 return primaryType
349 private String primaryType; field in class:MimeType
[all...]
H A DDataFlavor.java335 * @throws NullPointerException if either {@code primaryType},
338 private DataFlavor(String primaryType, String subType, MimeTypeParameterList params, Class<?> representationClass, String humanPresentableName) { argument
340 if (primaryType == null) {
341 throw new NullPointerException("primaryType");
358 humanPresentableName = primaryType + "/" + subType;
362 mimeType = new MimeType(primaryType, subType, params);
1017 String primaryType = mimeType.getPrimaryType();
1018 if (primaryType != null) {
1019 total += primaryType.hashCode();
1026 if ("text".equals(primaryType)) {
[all...]
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXDataTransferer.java188 String primaryType = df.getPrimaryType();
189 if ("image".equals(primaryType)) {
237 String primaryType = df.getPrimaryType();
238 if ("image".equals(primaryType)) {
293 private boolean isMimeFormat(long format, String primaryType) { argument
302 if (primaryType.equals(df.getPrimaryType())) {
337 final String primaryType = df.getPrimaryType();
338 final String baseType = primaryType + "/" + df.getSubType();
343 if ("image".equals(primaryType)) {
/openjdk10/jaxws/src/java.activation/share/classes/com/sun/activation/registries/
H A DMailcapFile.java305 String primaryType =
334 String mimeType = primaryType + "/" + subType;
/openjdk10/jdk/test/javax/xml/ws/8043129/
H A Djavax.mail.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/mail/ com/sun/mail/imap/ ...

Completed in 174 milliseconds