Searched refs:subType (Results 1 - 15 of 15) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.java46 private String subType; // subtype field in class:ContentType
58 * @param subType subType
61 public ContentType(String primaryType, String subType, argument
64 this.subType = subType;
72 * is parsed into its constituents: primaryType, subType
93 // Then "subType" ..
97 subType = tk.getValue();
106 return new ContentType(primaryType,subType,lis
171 setSubType(String subType) argument
[all...]
/openjdk9/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/linker/support/
H A DTypeUtilities.java213 * @param subType the supposed subtype
215 * @return true if subType can be converted by identity conversion, widening primitive conversion, or widening
218 public static boolean isSubtype(final Class<?> subType, final Class<?> superType) { argument
222 if(superType.isAssignableFrom(subType)) {
235 if(superType.isPrimitive() && subType.isPrimitive()) {
236 return isProperPrimitiveSubtype(subType, superType);
245 * @param subType the supposed subtype
247 * @return true if subType is a proper (not identical to) primitive subtype of the superType
249 private static boolean isProperPrimitiveSubtype(final Class<?> subType, final Class<?> superType) { argument
250 if(superType == boolean.class || subType
283 isProperPrimitiveLosslessSubtype(final Class<?> subType, final Class<?> superType) argument
[all...]
/openjdk9/jaxws/src/java.activation/share/classes/javax/activation/
H A DMimeType.java40 private String subType; field in class:MimeType
53 subType = "*";
86 subType = sub.toLowerCase(Locale.ENGLISH);
112 subType = rawdata.substring(slashIndex + 1).trim().
119 subType = rawdata.substring(slashIndex + 1, semIndex).trim().
135 if (!isValidToken(subType))
168 return subType;
180 if (!isValidToken(subType))
182 subType = sub.toLowerCase(Locale.ENGLISH);
239 return primaryType + "/" + subType;
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DContentType.java47 private String subType; // subtype field in class:ContentType
52 * is parsed into its constituents: primaryType, subType
73 // Then "subType" ..
77 subType = tk.getValue();
95 * Return the subType.
96 * @return the subType
99 return subType;
110 return primaryType + '/' + subType;
/openjdk9/jdk/src/java.datatransfer/share/classes/java/awt/datatransfer/
H A DMimeType.java102 subType = sub.toLowerCase(Locale.ENGLISH);
116 code += subType.hashCode();
136 (this.subType.equals(that.subType)) &&
161 subType = rawdata.substring(slashIndex + 1).
168 subType = rawdata.substring(slashIndex + 1,
186 if(!isValidToken(subType)) {
202 return subType;
250 return primaryType + "/" + subType;
267 && (subType
350 private String subType; field in class:MimeType
[all...]
H A DDataFlavor.java336 * {@code subType} or {@code representationClass} is {@code null}
338 private DataFlavor(String primaryType, String subType, MimeTypeParameterList params, Class<?> representationClass, String humanPresentableName) { argument
343 if (subType == null) {
344 throw new NullPointerException("subType");
358 humanPresentableName = primaryType + "/" + subType;
362 mimeType = new MimeType(primaryType, subType, params);
1022 // Do not add subType.hashCode() to the total. equals uses
1024 // subTypes is '*', regardless of the other subType.
H A DSystemFlavorMap.java636 String subType = null;
640 subType = mimeType.getSubType();
646 if (DataFlavorUtil.doesSubtypeSupportCharset(subType, null)) {
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/util/
H A DMimeTypeRange.java43 public final String subType; field in class:MimeTypeRange
92 subType = cutter.until("[;,]");
131 StringBuilder sb = new StringBuilder(majorType+'/'+subType);
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DTypeModeler.java99 public static boolean isSubclass(TypeElement subType, TypeElement superType, ProcessingEnvironment env) { argument
100 return !subType.equals(superType) && isSubElement(subType, superType);
/openjdk9/jdk/src/java.datatransfer/share/classes/sun/datatransfer/
H A DDataFlavorUtil.java161 String subType = flavor.getSubType();
162 if (subType == null) {
166 Boolean support = textMIMESubtypeCharsetSupport.get(subType);
173 textMIMESubtypeCharsetSupport.put(subType, ret_val);
176 public static boolean doesSubtypeSupportCharset(String subType, argument
179 Boolean support = textMIMESubtypeCharsetSupport.get(subType);
186 textMIMESubtypeCharsetSupport.put(subType, ret_val);
/openjdk9/jaxws/src/java.activation/share/classes/com/sun/activation/registries/
H A DMailcapFile.java307 String subType = "*";
327 subType =
334 String mimeType = primaryType + "/" + subType;
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DSimpleTypeBuilder.java794 && isXml(mt.subType))
797 if((mt.majorType.equalsIgnoreCase("text") && (mt.subType.equalsIgnoreCase("plain")) )) {
822 private boolean isXml(String subType) { argument
823 return subType.equals("xml") || subType.endsWith("+xml");
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DLexer.java429 private void fetchTokenFor_anchor(final int subType) { argument
431 token.setAnchor(subType);
/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DBinaryParser.java562 int subType = readByte();
563 switch(subType) {
/openjdk9/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 190 milliseconds