src/java.base/share/classes/java/util/regex/package-info.java
changeset 58288 48e480e56aad
parent 47216 71c04702a3d5
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 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
    35  * to match character sequences against a given pattern.  Input is
    35  * to match character sequences against a given pattern.  Input is
    36  * provided to matchers via the {@link java.lang.CharSequence}
    36  * provided to matchers via the {@link java.lang.CharSequence}
    37  * interface in order to support matching against characters from a
    37  * interface in order to support matching against characters from a
    38  * wide variety of input sources. </p>
    38  * wide variety of input sources. </p>
    39  *
    39  *
    40  * <p> Unless otherwise noted, passing a <code>null</code> argument to a
    40  * <p> Unless otherwise noted, passing a {@code null} argument to a
    41  * method in any class or interface in this package will cause a
    41  * method in any class or interface in this package will cause a
    42  * {@link java.lang.NullPointerException NullPointerException} to be
    42  * {@link java.lang.NullPointerException NullPointerException} to be
    43  * thrown.
    43  * thrown.
    44  *
    44  *
    45  * <h2>Related Documentation</h2>
    45  * <h2>Related Documentation</h2>