Searched defs:get (Results 1 - 5 of 5) sorted by relevance

/javamail/demo/src/main/java/internal/
H A DTtyAuthenticator.java77 String userName = get(in, "User Name", getDefaultUserName());
85 private static final String get(BufferedReader in, method in class:TtyAuthenticator
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DMessageLoader.java105 while ((b = get()) >= 0) {
144 while ((b = get()) >= 0) {
218 while ((b = get()) >= 0) {
268 private final int get() throws IOException { method in class:MessageLoader
/javamail/android/activation/src/main/java/javax/activation/
H A DMimeTypeParameterList.java219 public String get(String name) { method in class:MimeTypeParameterList
220 return (String)parameters.get(name.trim().toLowerCase(Locale.ENGLISH));
266 buffer.append(quote((String)parameters.get(key)));
/javamail/mail/src/main/java/javax/mail/internet/
H A DParameterList.java168 * ensure that get will return the same value that
306 String lastValue = (String)list.get(lastName);
432 Object v = slist.get(sname);
488 * If we get here because of an exception that's going to
539 public String get(String name) { method in class:ParameterList
541 Object v = list.get(name.trim().toLowerCase(Locale.ENGLISH));
669 Object va = vv.get(i);
/javamail/mail/src/main/java/com/sun/mail/util/logging/
H A DLogManagerProperties.java83 * Holds the method used to get the LogRecord instant if running on JDK 9 or
89 * Holds the method used to get the default time zone if running on JDK 9 or
367 * to get the local host name as a string.
915 Object v = super.get(key); //defaults are not used.
939 * key is a string. Otherwise, performs a get operation on the defaults
940 * followed by the normal hash table get.
947 public synchronized Object get(final Object key) { method in class:LogManagerProperties
957 value = defaults.get(key);
959 value = super.get(key);
1030 * It is assumed that this method will never be called. No way to get th
[all...]

Completed in 19 milliseconds