Class Megabytes
- java.lang.Object
-
- com.oracle.coherence.common.util.MemorySize
-
- com.tangosol.coherence.config.unit.Megabytes
-
public class Megabytes extends com.oracle.coherence.common.util.MemorySize
Megabytes
is a specializedMemorySize
whose default constructor assumes that the specified units (when a they are not specified) are measured in megabytes.Note: This class is provided to simplify and support backwards compatibility during the injection of
MemorySize
s into appropriate classes. This class is not designed for general purpose representation of capacity. For general purpose representations of memory capacity, please use theMemorySize
class.- Since:
- Coherence 12.1.2
- Author:
- bo 2012.01.19
-
-
Constructor Summary
Constructors Constructor Description Megabytes(int c)
Constructs aMegabytes
representing aMemorySize
measured in megabytes.Megabytes(com.oracle.coherence.common.util.MemorySize m)
Constructs aMegabytes
based on anotherMemorySize
.Megabytes(String s)
Constructs aMegabytes
representing aMemorySize
measured in megabytes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
get()
Obtain theMemorySize
in megabytes.
-
-
-
Constructor Detail
-
Megabytes
public Megabytes(int c)
Constructs aMegabytes
representing aMemorySize
measured in megabytes.- Parameters:
c
- the number of megabytes
-
Megabytes
public Megabytes(com.oracle.coherence.common.util.MemorySize m)
Constructs aMegabytes
based on anotherMemorySize
.- Parameters:
m
- theMemorySize
-
-