scala.runtime.VolatileCharRef Maven / Gradle / Ivy
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.runtime;
public final class VolatileCharRef implements java.io.Serializable {
private static final long serialVersionUID = 6537214938268005702L;
volatile public char elem;
public VolatileCharRef(char elem) { this.elem = elem; }
public String toString() { return java.lang.Character.toString(elem); }
public static VolatileCharRef create(char e) { return new VolatileCharRef(e); }
public static VolatileCharRef zero() { return new VolatileCharRef((char)0); }
}