src/java.base/share/classes/java/text/StringCharacterIterator.java
changeset 58288 48e480e56aad
parent 47216 71c04702a3d5
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    39  */
    39  */
    40 
    40 
    41 package java.text;
    41 package java.text;
    42 
    42 
    43 /**
    43 /**
    44  * <code>StringCharacterIterator</code> implements the
    44  * {@code StringCharacterIterator} implements the
    45  * <code>CharacterIterator</code> protocol for a <code>String</code>.
    45  * {@code CharacterIterator} protocol for a {@code String}.
    46  * The <code>StringCharacterIterator</code> class iterates over the
    46  * The {@code StringCharacterIterator} class iterates over the
    47  * entire <code>String</code>.
    47  * entire {@code String}.
    48  *
    48  *
    49  * @see CharacterIterator
    49  * @see CharacterIterator
    50  * @since 1.1
    50  * @since 1.1
    51  */
    51  */
    52 
    52