001 package com.softnetConsult.utils.collections; 002 003 /** 004 * An abstract superinterface for array iterators over primitive arrays. 005 * 006 * <p style="font-size:smaller;">This product includes software developed by the 007 * <strong>SoftNet-Consult Java Utility Library</strong> project and its contributors.<br /> 008 * (<a href="http://java-tools.sourceforge.net" target="_blank">http://java-tools.sourceforge.net</a>)<br /> 009 * Copyright (c) 2007-2008 SoftNet-Consult.<br /> 010 * Copyright (c) 2007-2008 G. Paperin.<br /> 011 * All rights reserved. 012 * </p> 013 * <p style="font-size:smaller;">File: ArrayIteratorPrimitive.java<br /> 014 * Library API version: {@value com.softnetConsult.utils.APIProperties#apiVersion}<br /> 015 * Java compliance version: {@value com.softnetConsult.utils.APIProperties#javaComplianceVersion} 016 * </p> 017 * <p style="font-size:smaller;">Redistribution and use in source and binary forms, with or 018 * without modification, are permitted provided that the following terms and conditions are met: 019 * </p> 020 * <p style="font-size:smaller;">1. Redistributions of source code must retain the above 021 * acknowledgement of the SoftNet-Consult Java Utility Library project, the above copyright 022 * notice, this list of conditions and the following disclaimer.<br /> 023 * 2. Redistributions in binary form must reproduce the above acknowledgement of the 024 * SoftNet-Consult Java Utility Library project, the above copyright notice, this list of 025 * conditions and the following disclaimer in the documentation and/or other materials 026 * provided with the distribution.<br /> 027 * 3. All advertising materials mentioning features or use of this software or any derived 028 * software must display the following acknowledgement:<br /> 029 * <em>This product includes software developed by the SoftNet-Consult Java Utility Library 030 * project and its contributors.</em> 031 * </p> 032 * <p style="font-size:smaller;">THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY 033 * OF ANY KIND, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 034 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 035 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 036 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 037 * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 038 * </p> 039 * @author Greg Paperin (<a href="http://www.paperin.org" target="_blank">http://www.paperin.org</a>) 040 * @version {@value com.softnetConsult.utils.APIProperties#apiVersion} 041 */ 042 public interface ArrayIteratorPrimitive { }