Uses of Class
org.springframework.web.bind.ServletRequestBindingException

Packages that use ServletRequestBindingException
org.springframework.web.bind Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. 
 

Uses of ServletRequestBindingException in org.springframework.web.bind
 

Methods in org.springframework.web.bind that throw ServletRequestBindingException
static Integer RequestUtils.getIntParameter(HttpServletRequest request, String name)
          Get an Integer parameter, or null if not present.
static int RequestUtils.getRequiredIntParameter(HttpServletRequest request, String name)
          Get an int parameter, throwing an exception if it isn't found or isn't a number.
static int[] RequestUtils.getRequiredIntParameters(HttpServletRequest request, String name)
          Get an array of int parameters, throwing an exception if not found or one is not a number..
static Long RequestUtils.getLongParameter(HttpServletRequest request, String name)
          Get a Long parameter, or null if not present.
static long RequestUtils.getRequiredLongParameter(HttpServletRequest request, String name)
          Get a long parameter, throwing an exception if it isn't found or isn't a number.
static long[] RequestUtils.getRequiredLongParameters(HttpServletRequest request, String name)
          Get an array of long parameters, throwing an exception if not found or one is not a number.
static Float RequestUtils.getFloatParameter(HttpServletRequest request, String name)
          Get a Float parameter, or null if not present.
static float RequestUtils.getRequiredFloatParameter(HttpServletRequest request, String name)
          Get a double parameter, throwing an exception if it isn't found or isn't a number.
static float[] RequestUtils.getRequiredFloatParameters(HttpServletRequest request, String name)
          Get an array of float parameters, throwing an exception if not found or one is not a number.
static Double RequestUtils.getDoubleParameter(HttpServletRequest request, String name)
          Get a Double parameter, or null if not present.
static double RequestUtils.getRequiredDoubleParameter(HttpServletRequest request, String name)
          Get a double parameter, throwing an exception if it isn't found or isn't a number.
static double[] RequestUtils.getRequiredDoubleParameters(HttpServletRequest request, String name)
          Get an array of double parameters, throwing an exception if not found or one is not a number.
static Boolean RequestUtils.getBooleanParameter(HttpServletRequest request, String name)
          Get a Boolean parameter, or null if not present.
static boolean RequestUtils.getRequiredBooleanParameter(HttpServletRequest request, String name)
          Get an array of boolean parameters, throwing an exception if it isn't found or isn't a boolean.
static boolean[] RequestUtils.getRequiredBooleanParameters(HttpServletRequest request, String name)
          Get an array of boolean parameters, throwing an exception if not found or one isn't a boolean.
static String RequestUtils.getStringParameter(HttpServletRequest request, String name)
          Get a String parameter, or null if not present.
static String RequestUtils.getRequiredStringParameter(HttpServletRequest request, String name)
          Get a string parameter, throwing an exception if it isn't found or is empty.
static String[] RequestUtils.getRequiredStringParameters(HttpServletRequest request, String name)
          Get an array of string parameters, throwing an exception if not found or one is empty.
 void ServletRequestDataBinder.closeNoCatch()
          Treats errors as fatal.
 



Copyright (C) 2003-2004 The Spring Framework Project.