package io.vertx.codetrans;

Control how code is rendered.
Author:Julien Viet
/** * Control how code is rendered. * * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */
public enum RenderMode {
A snippet of code, for documentation purpose, the code does not have to execute.
/** * A snippet of code, for documentation purpose, the code does not have to execute. */
SNIPPET,
Render to run as an example.
/** * Render to run as an example. */
EXAMPLE,
Render to be tested by codetrans.
/** * Render to be tested by codetrans. */
TEST }