net.sf.saxon.om.EnumSetTool Maven / Gradle / Ivy
Show all versions of Saxon-HE Show documentation
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2022 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.om;
import java.util.EnumSet;
/**
* A couple of utility methods for handling EnumSet objects.
*/
public class EnumSetTool {
/**
* Return a new EnumSet as the intersection of two supplied EnumSets. Neither is modified.
* @param a the first EnumSet
* @param b the second EnumSet
* @param the Enum class common to both arguments
* @return the combined EnumSet
*/
public static
> EnumSet
intersect(EnumSet
a, EnumSet
b) {
EnumSet
e = EnumSet.copyOf(a);
e.retainAll(b);
return e;
}
/**
* Return a new EnumSet as the union of two supplied EnumSets. Neither is modified
*
* @param a the first EnumSet
* @param b the second EnumSet
* @param
the Enum class common to both arguments
* @return the combined EnumSet
*/
public static
> EnumSet
union(EnumSet
a, EnumSet
b) {
EnumSet
e = EnumSet.copyOf(a);
e.addAll(b);
return e;
}
/**
* Return a new EnumSet as the difference of two supplied EnumSets. Neither is modified
*
* @param a the first EnumSet
* @param b the second EnumSet
* @param
the Enum class containing properties in (a) except those in (b)
* @return the combined EnumSet
*/
public static
> EnumSet
except(EnumSet
a, EnumSet
b) {
EnumSet
e = EnumSet.copyOf(a);
e.removeAll(b);
return e;
}
}