Class IpValue

    • Constructor Detail

      • IpValue

        public IpValue​(java.util.List<IpRange> ranges)
    • Method Detail

      • of

        public static IpValue of​(java.lang.String input)
      • isInRange

        public boolean isInRange​(IpAddr address)
      • getIpAddressRanges

        public java.util.List<IpRange> getIpAddressRanges()
      • parseCIDR

        public static IpRange parseCIDR​(java.lang.String cidr)
      • shrink

        public IpValue shrink​(Bound<IpAddr> bound)
        Description copied from interface: RuleValue
        Shrinks this rule value by removing those parts that are already covered by the given bound.

        The given bounds result from thresholds along paths in the decision tree. During classification those parts that are covered by these threshold need not to be checked again.

        Specified by:
        shrink in interface RuleValue<IpAddr,​IpValue>
        Returns:
        Returns a shrunk rule value or null if this rule value is completely covered by the given bound.