// Copyright 2012 Georg-August-Universität Göttingen, Germany // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package de.ugoe.cs.autoquest; import java.util.Collection; import java.util.List; import java.util.NoSuchElementException; import de.ugoe.cs.autoquest.eventcore.Event; /** *

* Helper class that can be used to determine if an object is a sequence or a * collection of sequences. {@code instanceof} does not work, because of * the type erasure of generics. *

* * @author Steffen Herbold * @version 1.0 */ public class SequenceInstanceOf { /** *

* Private constructor to prevent initializing of the class. *

*/ private SequenceInstanceOf() { } /** *

* Checks if an object is of type {@link Collection}<{@link List}< * {@link Event}<?>>>. *

* * @param obj * object that is checked * @return true, if the obj is of type {@link Collection}<{@link List} * < {@link Event}<?>>>; false otherwise */ public static boolean isCollectionOfSequences(Object obj) { try { if (obj instanceof Collection) { Object listObj = ((Collection) obj).iterator().next(); if (listObj instanceof List) { if (((List) listObj).iterator().next() instanceof Event) { return true; } } } } catch (NoSuchElementException e) { } return false; } /** *

* Checks if an object is of type {@link List}<{@link Event} * <?>>. *

* * @param obj * object that is checked * @return true, if obj is of type {@link List}<{@link Event} * <?>>; false otherwise */ public static boolean isEventSequence(Object obj) { try { if (obj instanceof List) { if (((List) obj).iterator().next() instanceof Event) { return true; } } } catch (NoSuchElementException e) { } return false; } }