类 RequestMappingInfoHandlerMapping.PartialMatchHelper
java.lang.Object
cn.taketoday.web.handler.method.RequestMappingInfoHandlerMapping.PartialMatchHelper
Aggregate all partial matches and expose methods checking across them.
-
嵌套类概要
嵌套类修饰符和类型类说明private static classContainer for a RequestMappingInfo that matches the URL path at least. -
字段概要
字段修饰符和类型字段说明 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明Return declared HTTP methods.Return declared "consumable" types but only among those that also match the "methods" condition.Return declared "consumable" types but only among those that have PATCH specified, or that have no methods at all.Return declared "params" conditions but only among those that also match the "methods", "consumes", and "params" conditions.Return declared "producible" types but only among those that also match the "methods" and "consumes" conditions.booleanAny partial matches for "methods" and "consumes"?booleanAny partial matches for "methods"?booleanAny partial matches for "methods", "consumes", "produces", and "params"?booleanAny partial matches for "methods", "consumes", and "produces"?booleanisEmpty()Whether there any partial matches.
-
字段详细资料
-
partialMatches
-
-
构造器详细资料
-
PartialMatchHelper
-
-
方法详细资料
-
isEmpty
public boolean isEmpty()Whether there any partial matches. -
hasMethodsMismatch
public boolean hasMethodsMismatch()Any partial matches for "methods"? -
hasConsumesMismatch
public boolean hasConsumesMismatch()Any partial matches for "methods" and "consumes"? -
hasProducesMismatch
public boolean hasProducesMismatch()Any partial matches for "methods", "consumes", and "produces"? -
hasParamsMismatch
public boolean hasParamsMismatch()Any partial matches for "methods", "consumes", "produces", and "params"? -
getAllowedMethods
Return declared HTTP methods. -
getConsumableMediaTypes
Return declared "consumable" types but only among those that also match the "methods" condition. -
getProducibleMediaTypes
Return declared "producible" types but only among those that also match the "methods" and "consumes" conditions. -
getParamConditions
Return declared "params" conditions but only among those that also match the "methods", "consumes", and "params" conditions. -
getConsumablePatchMediaTypes
Return declared "consumable" types but only among those that have PATCH specified, or that have no methods at all.
-