src/java.management/share/classes/javax/management/openmbean/TabularType.java
changeset 58766 54ffb15c4839
parent 52902 e3398b2e1ab0
equal deleted inserted replaced
58760:1f7f707c1aa9 58766:54ffb15c4839
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2014, 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
    57 
    57 
    58     /**
    58     /**
    59      * @serial The items used to index each row element, kept in the order the user gave
    59      * @serial The items used to index each row element, kept in the order the user gave
    60      *         This is an unmodifiable {@link ArrayList}
    60      *         This is an unmodifiable {@link ArrayList}
    61      */
    61      */
       
    62     @SuppressWarnings("serial") // Conditionally serializable
    62     private List<String> indexNames;
    63     private List<String> indexNames;
    63 
    64 
    64 
    65 
    65     private transient Integer myHashCode = null; // As this instance is immutable, these two values
    66     private transient Integer myHashCode = null; // As this instance is immutable, these two values
    66     private transient String  myToString = null; // need only be calculated once.
    67     private transient String  myToString = null; // need only be calculated once.