Uses of Class
inet.ipaddr.SizeMismatchException
Packages that use SizeMismatchException
-
Uses of SizeMismatchException in inet.ipaddr.ipv4
Methods in inet.ipaddr.ipv4 that throw SizeMismatchExceptionModifier and TypeMethodDescriptionIPv4AddressSection.bitwiseOr(IPv4AddressSection mask, boolean retainPrefix) Does the bitwise disjunction with this address section.IPv4AddressSection.bitwiseOrNetwork(IPv4AddressSection mask, int networkPrefixLength) Does the bitwise disjunction with this address section.IPv4AddressSection.intersect(IPv4AddressSection other) Produces the subnet sections whose individual sections are found in both this and the given argument.IPv4AddressSection.mask(IPv4AddressSection mask) Equivalent toIPv4AddressSection.mask(IPv4AddressSection, boolean)with the second argument as false.IPv4AddressSection.mask(IPv4AddressSection mask, boolean retainPrefix) Does the bitwise conjunction with this address.IPv4AddressSection.maskNetwork(IPv4AddressSection mask, int networkPrefixLength) Produces the bitwise conjunction of the given mask with the network section of the address as indicated by the given prefix length.IPv4AddressSection.mergePrefixBlocks(IPv4AddressSection... sections) Deprecated.IPv4AddressSection.mergeToPrefixBlocks(IPv4AddressSection... sections) Merges this with the list of sections to produce the smallest array of prefix blocks.IPv4AddressSection.mergeToSequentialBlocks(IPv4AddressSection... sections) Merges this with the list of sections to produce the smallest array of sequential block subnets.IPv4AddressSection.subtract(IPv4AddressSection other) Subtract the given subnet from this subnet, returning an array of sections for the result (the subnets will not be contiguous so an array is required). -
Uses of SizeMismatchException in inet.ipaddr.ipv6
Methods in inet.ipaddr.ipv6 that throw SizeMismatchExceptionModifier and TypeMethodDescriptionIPv6AddressSection.bitwiseOr(IPv6AddressSection mask, boolean retainPrefix) Does the bitwise disjunction with this address.IPv6AddressSection.bitwiseOrNetwork(IPv6AddressSection mask, int networkPrefixLength) Does the bitwise disjunction with this address.IPv6AddressSection.intersect(IPv6AddressSection other) Produces the subnet sections whose addresses are found in both this and the given argument.IPv6AddressSection.mask(IPv6AddressSection mask) Equivalent toIPv6AddressSection.mask(IPv6AddressSection, boolean)with the second argument as false.IPv6AddressSection.mask(IPv6AddressSection mask, boolean retainPrefix) Does the bitwise conjuction with this address.IPv6AddressSection.maskNetwork(IPv6AddressSection mask, int networkPrefixLength) Applies the given mask to the network section of the address as indicated by the given prefix length.IPv6AddressSection.mergePrefixBlocks(IPv6AddressSection... sections) Deprecated.IPv6AddressSection.mergeToPrefixBlocks(IPv6AddressSection... sections) Merges this with the list of sections to produce the smallest array of prefix blocks.IPv6AddressSection.mergeToSequentialBlocks(IPv6AddressSection... sections) Merges this with the list of sections to produce the smallest array of sequential block subnets, going from smallest to largestIPv6AddressSection.subtract(IPv6AddressSection other) Subtract the give subnet from this subnet, returning an array of sections for the result (the subnets will not be contiguous so an array is required).
IPv4AddressSection.mergeToPrefixBlocks(IPv4AddressSection...)