Uses of Class
org.jxmpp.JxmppContext
-
Packages that use JxmppContext Package Description org.jxmpp JXMPP, a XMPP base library.org.jxmpp.jid.impl JXMPP's implementation ofJid
and it's subtypes.org.jxmpp.jid.parts Classes representing JID parts (Local-, Resource- and Domainpart).org.jxmpp.stringprep API to transform (prepare) Strings and CharSequences for use in XMPP.org.jxmpp.strings.testframework A framework to test various XMPP specific string preparation libraries. -
-
Uses of JxmppContext in org.jxmpp
Methods in org.jxmpp that return JxmppContext Modifier and Type Method Description JxmppContext
JxmppContext.Builder. build()
Build a JxmppContext.static JxmppContext
JxmppContext. getDefaultContext()
Get the default context. -
Uses of JxmppContext in org.jxmpp.jid.impl
Methods in org.jxmpp.jid.impl with parameters of type JxmppContext Modifier and Type Method Description static BareJid
JidCreate. bareFrom(String jid, JxmppContext context)
Get aBareJid
representing the given String.static DomainBareJid
JidCreate. domainBareFrom(String jid, JxmppContext context)
Get a domain bare JID.static DomainFullJid
JidCreate. domainFullFrom(String jid, JxmppContext context)
Get a domain full JID from the given String.static EntityBareJid
JidCreate. entityBareFrom(String jid, JxmppContext context)
Get aEntityBareJid
representing the given String.static EntityBareJid
JidCreate. entityBareFromUnescaped(String unescapedJidString, JxmppContext context)
Get aEntityBareJid
representing the given unescaped String.static EntityFullJid
JidCreate. entityFullFrom(String localpart, String domainpart, String resource, JxmppContext context)
Get aEntityFullJid
constructed from the given parts.static EntityFullJid
JidCreate. entityFullFromUnescaped(String unescapedJidString, JxmppContext context)
Get aEntityFullJid
representing the given unescaped String.static Jid
JidCreate. from(String localpart, String domainpart, String resource, JxmppContext context)
Get aJid
from the given parts.static Jid
JidCreate. from(String jidString, JxmppContext context)
Get aJid
from the given String.static FullJid
JidCreate. fullFrom(String localpart, String domainpart, String resource, JxmppContext context)
Get aFullJid
constructed from the given parts. -
Uses of JxmppContext in org.jxmpp.jid.parts
Methods in org.jxmpp.jid.parts with parameters of type JxmppContext Modifier and Type Method Description static Domainpart
Domainpart. from(String domain, JxmppContext context)
Get theDomainpart
representing the input String.static Localpart
Localpart. from(String localpart, JxmppContext context)
Get theLocalpart
representing the input String.static Resourcepart
Resourcepart. from(String resource, JxmppContext context)
Get theResourcepart
representing the input String. -
Uses of JxmppContext in org.jxmpp.stringprep
Methods in org.jxmpp.stringprep with parameters of type JxmppContext Modifier and Type Method Description static String
XmppStringPrepUtil. domainprep(String string, JxmppContext context)
Perform domainprep on the input String.static String
XmppStringPrepUtil. localprep(String string, JxmppContext context)
Perform localprep on the input String.static String
XmppStringPrepUtil. resourceprep(String string, JxmppContext context)
Perform resourceprep on the input String. -
Uses of JxmppContext in org.jxmpp.strings.testframework
Fields in org.jxmpp.strings.testframework declared as JxmppContext Modifier and Type Field Description JxmppContext
XmppStringPrepper. context
-