Java Code Examples for consulo.util.dataholder.Key#toString()
The following examples show how to use
consulo.util.dataholder.Key#toString() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StatisticsManager.java From consulo with Apache License 2.0 | 4 votes |
@Override @Nonnull protected String keyToString(@Nonnull final Key key) { return key.toString(); }
Example 2
Source File: WeighingService.java From consulo with Apache License 2.0 | 4 votes |
@Override protected String keyToString(final Key key) { return key.toString(); }