In the following MWE, I would like the end of switch to be different from the ends of case and other. Is it possible ?
\documentclass{article}
\usepackage{algorithm2e}
\begin{document}
\begin{algorithm}
\Begin{
\Switch{X}{
\Case{1}{
\While{Continue}{Action}
}
\Other{Other}
}
}
\end{algorithm}
\end{document}
