CharArray.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.dbcp2.datasources;

  18. import java.io.Serializable;
  19. import java.util.Arrays;

  20. import org.apache.commons.dbcp2.Utils;

  21. /**
  22.  * A {@code char} array wrapper that does not reveal its contents inadvertently through toString(). In contrast to, for
  23.  * example, AtomicReference which toString()'s its contents.
  24.  *
  25.  * May contain null.
  26.  *
  27.  * @since 2.9.0
  28.  */
  29. final class CharArray implements Serializable {

  30.     private static final long serialVersionUID = 1L;

  31.     static final CharArray NULL = new CharArray((char[]) null);

  32.     private final char[] chars;

  33.     CharArray(final char[] chars) {
  34.         this.chars = Utils.clone(chars);
  35.     }

  36.     CharArray(final String string) {
  37.         this.chars = Utils.toCharArray(string);
  38.     }

  39.     /**
  40.      * Converts the value of char array as a String.
  41.      *
  42.      * @return value as a string, may be null.
  43.      */
  44.     String asString() {
  45.         return Utils.toString(chars);
  46.     }

  47.     @Override
  48.     public boolean equals(final Object obj) {
  49.         if (this == obj) {
  50.             return true;
  51.         }
  52.         if (!(obj instanceof CharArray)) {
  53.             return false;
  54.         }
  55.         final CharArray other = (CharArray) obj;
  56.         return Arrays.equals(chars, other.chars);
  57.     }

  58.     /**
  59.      * Gets the value of char array.
  60.      *
  61.      * @return value, may be null.
  62.      */
  63.     char[] get() {
  64.         return Utils.clone(chars);
  65.     }

  66.     @Override
  67.     public int hashCode() {
  68.         return Arrays.hashCode(chars);
  69.     }

  70. }