Class PolicyUtils.Comparison
- java.lang.Object
-
- com.sun.xml.ws.policy.privateutil.PolicyUtils.Comparison
-
- Enclosing class:
- PolicyUtils
public static class PolicyUtils.Comparison extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static Comparator<QName>QNAME_COMPARATORThe comparator comapres QName objects according to their publicly accessible attributes, in the following order of attributes: 1.
-
Constructor Summary
Constructors Constructor Description Comparison()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intcompareBoolean(boolean b1, boolean b2)Compares two boolean values in the following way:false < truestatic intcompareNullableStrings(String s1, String s2)Compares two String values, that may possibly be null in the following way:null < "string value"
-
-
-
Field Detail
-
QNAME_COMPARATOR
public static final Comparator<QName> QNAME_COMPARATOR
The comparator comapres QName objects according to their publicly accessible attributes, in the following order of attributes: 1. namespace (not null String) 2. local name (not null String)
-
-