jdk/src/java.management/share/classes/java/lang/management/MemoryType.java
changeset 32034 05676cfd40b5
parent 25859 3317bb8137f4
equal deleted inserted replaced
32033:bf24e33c7919 32034:05676cfd40b5
    60     private MemoryType(String s) {
    60     private MemoryType(String s) {
    61         this.description = s;
    61         this.description = s;
    62     }
    62     }
    63 
    63 
    64     /**
    64     /**
    65      * Returns the string representation of this <tt>MemoryType</tt>.
    65      * Returns the string representation of this {@code MemoryType}.
    66      * @return the string representation of this <tt>MemoryType</tt>.
    66      * @return the string representation of this {@code MemoryType}.
    67      */
    67      */
    68     public String toString() {
    68     public String toString() {
    69         return description;
    69         return description;
    70     }
    70     }
    71 
    71