MCPcopy Create free account
hub / github.com/M66B/FairEmail / getMode

Method getMode

app/src/main/java/javax/mail/Folder.java:665–669  ·  view source on GitHub ↗

Return the open mode of this folder. Returns Folder.READ_ONLY , Folder.READ_WRITE , or -1 if the open mode is not known (usually only because an older Folder provider has not been updated to use this new method). @exception IllegalStateException if this folder

()

Source from the content-addressed store, hash-verified

663 * @since JavaMail 1.1
664 */
665 public synchronized int getMode() {
666 if (!isOpen())
667 throw new IllegalStateException("Folder not open");
668 return mode;
669 }
670
671 /**
672 * Get the permanent flags supported by this Folder. Returns a Flags

Callers 5

checkSeenMethod · 0.95
onMeasureMethod · 0.45
onMeasureMethod · 0.45
liveInCallMethod · 0.45
isInCallMethod · 0.45

Calls 1

isOpenMethod · 0.95

Tested by

no test coverage detected