congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Encode.encodeValue
Code IndexAdd Tabnine to your IDE (free)

How to use
encodeValue
method
in
org.jboss.resteasy.util.Encode

Best Java code snippets using org.jboss.resteasy.util.Encode.encodeValue (Showing top 18 results out of 315)

origin: resteasy/Resteasy

/**
* Keep encoded values "%...", matrix parameters and template parameters intact.
* @param value path segment
* @return encoded path segment
*/
public static String encodePathSegment(String value)
{
 return encodeValue(value, pathSegmentEncoding);
}
origin: resteasy/Resteasy

/**
* Keep encoded values "%..." and template parameters intact.
* @param value query string
* @return encoded query string
*/
public static String encodeQueryString(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: resteasy/Resteasy

/**
* Keep encoded values "%..." and template parameters intact.
* @param value uri fragment
* @return encoded uri fragment
*/
public static String encodeFragment(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: resteasy/Resteasy

/**
* Keep encoded values "%..." and template parameters intact.
* @param value matrix parameter
* @return encoded matrix parameter
*/
public static String encodeMatrixParam(String value)
{
 return encodeValue(value, matrixParameterEncoding);
}
origin: resteasy/Resteasy

/**
* Keep encoded values "%..." and template parameters intact.
* @param value query parameter
* @return encoded query parameter
*/
public static String encodeQueryParam(String value)
{
 return encodeValue(value, queryNameValueEncoding);
}
origin: resteasy/Resteasy

/**
* Keep encoded values "%...", matrix parameters, template parameters, and '/' characters intact.
* @param value path
* @return encoded path
*/
public static String encodePath(String value)
{
 return encodeValue(value, pathEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%..." and template parameters intact.
* @param value query parameter
* @return encoded query parameter
*/
public static String encodeQueryParam(String value)
{
 return encodeValue(value, queryNameValueEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%..." and template parameters intact.
*/
public static String encodeMatrixParam(String value)
{
 return encodeValue(value, matrixParameterEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%..." and template parameters intact.
* @param value uri fragment
* @return encoded uri fragment
*/
public static String encodeFragment(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%..." and template parameters intact.
*/
public static String encodeFragment(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%..." and template parameters intact.
* @param value query string
* @return encoded query string
*/
public static String encodeQueryString(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%..." and template parameters intact.
* @param value matrix parameter
* @return encoded matrix parameter
*/
public static String encodeMatrixParam(String value)
{
 return encodeValue(value, matrixParameterEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%...", matrix parameters, template parameters, and '/' characters intact.
* @param value path
* @return encoded path
*/
public static String encodePath(String value)
{
 return encodeValue(value, pathEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%..." and template parameters intact.
*/
public static String encodeQueryString(String value)
{
 return encodeValue(value, queryStringEncoding);
}
origin: org.jboss.resteasy/resteasy-core

/**
* Keep encoded values "%...", matrix parameters and template parameters intact.
* @param value path segment
* @return encoded path segment
*/
public static String encodePathSegment(String value)
{
 return encodeValue(value, pathSegmentEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%...", matrix parameters, template parameters, and '/' characters intact.
*/
public static String encodePath(String value)
{
 return encodeValue(value, pathEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%...", matrix parameters and template parameters intact.
*/
public static String encodePathSegment(String value)
{
 return encodeValue(value, pathSegmentEncoding);
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

/**
* Keep encoded values "%..." and template parameters intact.
*/
public static String encodeQueryParam(String value)
{
 return encodeValue(value, queryNameValueEncoding);
}
org.jboss.resteasy.utilEncodeencodeValue

Javadoc

Keep encoded values "%..." and template parameters intact i.e. "{x}"

Popular methods of Encode

  • decode
    decode an encoded map
  • encode
  • encodeFragment
    Keep encoded values "%..." and template parameters intact.
  • encodePath
    Keep encoded values "%...", matrix parameters, template parameters, and '/' characters intact.
  • encodePathAsIs
    Encode via RFC 3986 [http://ietf.org/rfc/rfc3986.txt]. PCHAR is allowed allong with '/' unreserved =
  • decodeBytes
  • decodePath
  • encodeFromArray
  • encodeMatrixParam
    Keep encoded values "%..." and template parameters intact.
  • encodeNonCodes
    Encode '%' if it is not an encoding sequence
  • encodePathSaveEncodings
    Keep any valid encodings from string i.e. keep "%2D" but don't keep "%p"
  • encodePathSegment
    Keep encoded values "%...", matrix parameters and template parameters intact.
  • encodePathSaveEncodings,
  • encodePathSegment,
  • encodePathSegmentAsIs,
  • encodePathSegmentSaveEncodings,
  • encodeQueryParam,
  • encodeQueryParamAsIs,
  • encodeQueryParamSaveEncodings,
  • encodeQueryString,
  • pathParamReplacement

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JOptionPane (javax.swing)
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now