blob: b2e62c53f544a7a91e216728e7111bf53b7e7bc3 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
/*
******************************************************************************
* Copyright (C) 1996-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
package android.icu.util;
@SuppressWarnings({"unchecked", "deprecation", "all"})
public interface ValueIterator {
public boolean next(android.icu.util.ValueIterator.Element element);
public void reset();
public void setRange(int start, int limit);
@SuppressWarnings({"unchecked", "deprecation", "all"})
public static final class Element {
public Element() { throw new RuntimeException("Stub!"); }
public int integer;
public java.lang.Object value;
}
}